Im trying to plot N(# of stages) vs pi_s(pressure ratio), but i only get one point.

 Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 9 de Feb. de 2021
Editada: KALYAN ACHARJYA el 9 de Feb. de 2021

0 votos

Define Before the loop
t=1:N
for i=1:length(t)
tao_s=
pic_s(i)=
end
plot(t,pic_s);
Also you can avoid the loop here (recomended)
N=.....
tao_s=(Tt1+N.*delta....)./ same . after N, like N.*
pic_s=tao_s.^.....
plot(1:N,pic_s)

Más respuestas (0)

Categorías

Más información sobre Mathematics en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 9 de Feb. de 2021

Editada:

el 9 de Feb. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by