root/matlab/pmsm_sim_disp.m @ 47

Revision 47, 329 bytes (checked in by smidl, 16 years ago)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Rev Author Date
Line 
1itload('../tests/pmsm_sim.it')
2figure(1);
3for i =1:4
4        subplot(4,1,i)
5        plot(Dt(i,:)')
6end
7
8figure(2)
9for i=1:4
10        subplot(4,1,i)
11        plot(xth(i,:)')
12        hold on;
13        plot(xthE(i,:)','r')
14end
15
16figure(3)
17ndat = size(ll,2);
18hold off
19plot(llgrid,ll(:,floor(ndat/3)),':');
20hold on
21plot(llgrid,ll(:,floor(2*ndat/3)),'--');
22plot(llgrid,ll(:,ndat));
Note: See TracBrowser for help on using the browser.