- changing line 126 to Thrust(mdotfuel+1,mach,Alt) = mdotfuel*(U8-Uo);
- adding Thrust = zeros(6,3,3); before the for loops (line 26)
- removing all plot-related commands in the loops
- adding something along the lines of
Connecting Points in a Scatter Plot
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Here is what I'm tasked to do. I need to make three plots where in each plot the pressure and temperature change. In each of the plots, I need to plot Thrust against Mach number for a range of fuel flow rates (6 values for now). So for example, plot 1 with P=30000 Pa and T=230 K will have 6 curves, each curve corresponding to a different fuel flow rate. What I need to do is for each fuel flow rate "setting", I need to connect the points for x=mach number y=thrust.
I've attached my code so you can see if my logic is wrong. http://www.mediafire.com/?8z30my3zfija28j
0 comentarios
Respuesta aceptada
Matt Tearle
el 27 de Feb. de 2011
Focusing just on the problem at hand, I'd suggest
Mo=[0 1 2];
for k = 1:3
figure(k)
plot(Mo,Thrust(:,:,k),'b.-')
end
at the end.
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!