How to run a program for three different values

1 view (last 30 days)
Hi to all the Users,
My question is that I made a program and calculated the value with some temperature T=20 got the graph and all stuff. How i can run the same program for T = 30,40,50. Thanks

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 7 Jul 2015
temp= [30,40,50]
for k=1:numel(Temp)
T=temp(k)
% add your ptogramme
end
  1 Comment
Offroad Jeep
Offroad Jeep on 7 Jul 2015
Nice one ............ but how i can see all the graphs in one window.......

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!