git-svn-id: http://moon:8086/svn/projects/HendiControl@249 fda53097-d464-4ada-af97-ba876c37ca34
This commit is contained in:
2019-04-16 21:53:47 +00:00
parent f280a36f05
commit 60b3e4864a
+10 -2
View File
@@ -27,7 +27,15 @@ function results_sprung (filename)
x = load(filename); x = load(filename);
Npad = 600; Npad = 600;
t = [-(Npad-1:-1:0)/60 x(:,1)']; t = [-(Npad-1:-1:0)/60 x(:,1)'];
v1 = [repmat(x(1,2), 1, Npad) x(:,2)']; temp_raw = [repmat(x(1,2), 1, Npad) x(:,2)'];
plot (t, v1); grid temp_filtered = [repmat(x(1,3), 1, Npad) x(:,3)'];
power = [repmat(x(1,4), 1, Npad) x(:,4)'];
error = [repmat(x(1,5), 1, Npad) x(:,5)'];
heatrate_filtered = [repmat(x(1,6), 1, Npad) x(:,6)'];
subplot(2,1,1)
plot (t, power); grid
subplot(2,1,2)
plot (t, heatrate_filtered); grid
endfunction endfunction