Only saving last run for loop

1 visualización (últimos 30 días)
Alexander Garber
Alexander Garber el 11 de Abr. de 2021
Comentada: Alexander Garber el 12 de Abr. de 2021
This is my code
for i=1: 560;
z=z+dz;
pie=pie-((g/(cp*thetav(z)))*z);
end
I need pie for later calculations. The problem is that it only saves the last value of pie, and forgets all the rest. Is there a way to fix this?
Thanks
  3 comentarios
Stephen23
Stephen23 el 12 de Abr. de 2021
Editada: Stephen23 el 12 de Abr. de 2021
Alexander Garber
Alexander Garber el 12 de Abr. de 2021
ok i will check it out, thanks!!

Iniciar sesión para comentar.

Respuesta aceptada

David Hill
David Hill el 11 de Abr. de 2021
pie(1)=0;
for i=1: 560;
z=z+dz;
pie(i+1)=pie(i)-((g/(cp*thetav(z)))*z);
end
  1 comentario
Alexander Garber
Alexander Garber el 11 de Abr. de 2021
How would I plot that? My current plot just has many horizontal lines. Is there a way to assign a specific z value for each data point?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Pie Charts en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by