how can i plot different curves when both are variables ?

v= 5:2.5:40; m= 191:10:271; kinetic energy = 0.5 * m*v that i want to plot KE for different mass values.

回答 (1 件)

Kodavati Mahendra
Kodavati Mahendra 2018 年 6 月 7 日

0 投票

v= 5:2.5:40;
m= 191:10:271;
for i=1:length(m)
KE(i,:) = 0.5*m(i).*v;
end
plot(m,KE);
legend(string(v));
xlabel('m')
ylabel('KE')

カテゴリ

ヘルプ センター および File ExchangeInterpolation についてさらに検索

製品

リリース

R2018a

質問済み:

2018 年 6 月 7 日

コメント済み:

2018 年 6 月 11 日

Community Treasure Hunt

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

Start Hunting!

Translated by