[go: up one dir, main page]

Menu

[e264ba]: / cwpost / initplot.m  Maximize  Restore  History

Download this file

13 lines (12 with data), 211 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
% little plot. will not work unless you have 'inite.mat'
load inits
for idx=1:6
figure(30+idx);
plot(xss0{idx}')
ylim([-.1 1.1]);
legend(xl);
if idx>3
figure(40+idx)
plot(pss0{idx}')
end
end