How to plot this equation if C is 4?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Respuesta aceptada
Torsten
el 9 de Mayo de 2022
fun = @(t,C) 5*t.^2./(t.^5+C);
t = 0:0.01:3;
C = 4;
plot(t,fun(t,C))
0 comentarios
Más respuestas (1)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!