root/applications/mpdm/SYSID09/plotsmp.m @ 706

Revision 706, 170 bytes (checked in by smidl, 15 years ago)

eol-native

  • Property svn:eol-style set to native
Line 
1function plotsmp(Smp,fg)
2nc = size(Smp,2);
3
4figure(fg);
5for i=1:nc
6    for j=1:nc
7        subplot(nc,nc,(i-1)*nc+j);
8        plot(Smp(:,i),Smp(:,j),'.');
9    end
10end
11   
Note: See TracBrowser for help on using the browser.