0a3225b1eb
This obsoletes loopback-mem.bash.
12 lines
220 B
Matlab
Executable File
12 lines
220 B
Matlab
Executable File
#!/usr/bin/octave
|
|
|
|
r=csvread('/tmp/extractloop.csv');
|
|
figure('Position',[100,100,1600,800]);
|
|
plot(r(:,2), r(:,3)/1024, '-o');
|
|
xlabel('seconds')
|
|
ylabel('RSS MiB')
|
|
grid on;
|
|
drawnow;
|
|
disp('press enter to exit');
|
|
input('');
|