How to plot this equation if C is 4?
    3 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    

0 commentaires
Réponse acceptée
  Torsten
      
      
 le 9 Mai 2022
        fun = @(t,C) 5*t.^2./(t.^5+C);
t = 0:0.01:3;
C = 4;
plot(t,fun(t,C))
0 commentaires
Plus de réponses (1)
Voir également
Catégories
				En savoir plus sur Graphics Objects dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
