Labrador/Old Matlab Interface/plotiso.m

18 lines
270 B
Mathematica
Raw Normal View History

2016-09-07 07:36:43 +01:00
function [isoLog] = plotiso(mode)
iso_incoming;
load('isoLog.txt');
window = 750;
switch (mode)
case 1
for n=1:32:((length(isoLog))-window)
plot(isoLog(n:n+window));
drawnow
pause(0.03);
end
otherwise
plot(isoLog);
end