Plotting a function where the x-axis is also a function

9 ビュー (過去 30 日間)
Eli Wolkenstein
Eli Wolkenstein 2023 年 2 月 17 日
編集済み: Voss 2023 年 2 月 17 日
I want to plot a power vs velocity graph for this function P(t)=229500*v(1+0.2647*v) and v is also a function: v(t)=6.6524*(exp(0.0183993*t)-1). I wrote this code but it doesn't work. ANy ideas about why it's wrong?
t=0:1:50;
v=6.6524*(exp(0.0183993*t)-1);
p=2295000*v(1+0.2647*v);
plot(v,p)
title('Power vs Velocity')
xlabel('Velocity (m/s)')
ylabel('Power (W)')

採用された回答

Voss
Voss 2023 年 2 月 17 日
t=0:1:50;
v=6.6524*(exp(0.0183993*t)-1);
% p=2295000*v(1+0.2647*v);
% ^^ missing operator (.*)
p=2295000*v.*(1+0.2647*v);
plot(v,p)
title('Power vs Velocity')
xlabel('Velocity (m/s)')
ylabel('Power (W)')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by