Azzera filtri
Azzera filtri

How to plot this equation if C is 4?

1 visualizzazione (ultimi 30 giorni)
ken
ken il 9 Mag 2022
Risposto: Sam Chak il 9 Mag 2022

Risposta accettata

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

Più risposte (1)

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

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by