- 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 (최근 30일)
이전 댓글 표시
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
채택된 답변
Matt Tearle
2011년 2월 27일
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.
추가 답변 (0개)
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!