source: MML/trunk/applications/orbit/camd/plotu.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: 287 bytes
Line 
1global RSP
2
3
4%horizontal
5figure
6for k=1:16
7subplot(4,4,k)
8plot(RSP(1).u(:,k))
9hold on
10plot(RSP(1).v(:,k),'r')
11axis([0 16 -1 1])
12title(num2str(k))
13end
14
15%vertical
16figure
17for k=1:12
18subplot(4,4,k)
19plot(RSP(2).u(:,k))
20hold on
21plot(RSP(2).v(:,k),'r')
22axis([0 12 -1 1])
23title(num2str(k))
24end
25
Note: See TracBrowser for help on using the repository browser.