Help For Engineering plotting

Need assistance making the graph for Q1 and 2

3 件のコメント

Jan
Jan 2017 年 10 月 20 日
What kind of assistance do you need? Please post, what you have tried so far and ask a specific question. The forum will not solve your homework.
Jeremy Stones
Jeremy Stones 2017 年 10 月 21 日
I was not sure how to start the first question... sorry

サインインしてコメントする。

回答 (1 件)

Image Analyst
Image Analyst 2017 年 10 月 21 日

0 投票

Figure out fuel flow rate and angular speed from your equations. Then use plot():
fuelFlowRate = ....... % Q
angularSpeed = ..... % Omega
plot(angularSpeed, fuelFlowRate, 'b*-', 'LineWidth', 2);
xlabel('Angular Speed', 'FontSize', 20);
ylabel('Fuel Flow Rate, 'FontSize', 20);
title('Fuel Flow Rate vs. Angular Speed', 'FontSize', 20);
grid on;
I'm not sure what question 2 is. The task labeled 2 (i.e., plot Q vs omega) seems to refer to some other 2, which is weird - I don't see the #2 that is is referring to.

質問済み:

2017 年 10 月 20 日

回答済み:

2017 年 10 月 21 日

Community Treasure Hunt

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

Start Hunting!

Translated by