How to keep all runs in one file or save it somewhere else to plot it later

1 次查看(过去 30 天)
I have to run 5 samples at different step time and plot h vs t
example : steptime = 1 for the first run for i = 0:steptime:10 ...... formula to calculate h and t
and plot h vs t
then let steptime = 2 for second run .
...... plot h vs t ..
is there a way to keep all this data in the same file to plot all of them in the same graph or how to save each data in separate folder and combine all in one. When I save my data it is under .mat type and my operation on the computer is Linux .
Thanks
  1 个评论
Phong Pham
Phong Pham 2012-2-3
I just plot(t,h) for single data and I dont know how to plot all at once because every time I change the steptime the h and t are different with previous run

请先登录,再进行评论。

采纳的回答

Friedrich
Friedrich 2012-2-3
Hi,
are you looking for hold on and hold off?
>> plot(1:10)
>> hold on
>> plot(rand(5))
>> hold off
  3 个评论
Friedrich
Friedrich 2012-2-3
I am not sure if I understand it correctly. I assume you do something like this:
count = 0;
for i=1:1:10
count = count + 1;
t(count) = i;
h(count) = i*t(count)^2 + i
end
plot(t,h)
hold on
t = []
h = []
count = 0;
for i=1:2:10
count = count + 1;
t(count) = i^2;
h(count) = i*sqrt(t(count)) + i
end
plot(t,h)
Phong Pham
Phong Pham 2012-2-3
Is there a way to write the loop for the whole code with steptime change and plot all of them at the same time

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by