How to plot this equation if C is 4?

1 回表示 (過去 30 日間)
ken
ken 2022 年 5 月 9 日
回答済み: Sam Chak 2022 年 5 月 9 日

採用された回答

Torsten
Torsten 2022 年 5 月 9 日
fun = @(t,C) 5*t.^2./(t.^5+C);
t = 0:0.01:3;
C = 4;
plot(t,fun(t,C))

その他の回答 (1 件)

Sam Chak
Sam Chak 2022 年 5 月 9 日
Alternatively, you may use fplot for an overview.
fplot(@(t) (5*t.^2)./(t.^5 + 4), [-6 6])

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by