How to run a program for three different values
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Offroad Jeep
el 7 de Jul. de 2015
Comentada: Offroad Jeep
el 7 de Jul. de 2015
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
1 comentario
Respuesta aceptada
Azzi Abdelmalek
el 7 de Jul. de 2015
temp= [30,40,50]
for k=1:numel(Temp)
T=temp(k)
% add your ptogramme
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Graph and Network Algorithms en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!