How to plot this equation if C is 4?

1 次查看(过去 30 天)

采纳的回答

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 CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by