source: MML/trunk/machine/SOLEIL/StorageRing/RadiaMapGui/PlotRadiaMap_Bxy.m @ 4

Last change on this file since 4 was 4, checked in by zhangj, 10 years ago

Initial import--MML version from SOLEIL@2013

File size: 428 bytes
Line 
1function  PlotRadiaMap_Bxy(StartLn,EndLn,x,Bx,forder,funit)
2
3fcolor = ['r','b','g','c','k','m','y'];
4figure(2);
5for i=StartLn:EndLn
6   
7       fci = fcolor(rem(i,7));
8    if (fci == 0) fci = 1;end
9   
10    plot(Bx(:,1),Bx(:,i),fci);
11    hold on;
12end
13 xlabel('y[m]');
14 ylabel([forder, ' Bx ',funit]);
15 title([forder,' vertical kick/horizontal field map',funit,'  for lines: ', num2str(StartLn),' to ',num2str(EndLn)]);
16 grid on;
Note: See TracBrowser for help on using the repository browser.