Any help with the syntax of this function, I keep getting errors?
Afficher commentaires plus anciens
t = 20:20:100
N = 220 / (1 + 10 * (0.83 ^ (x)));
plot(t, N)
Réponses (1)
t = linspace(20,100);
N = 220 ./ (1 + 10 * (0.83 .^ (t)));
plot(t, N)
Catégories
En savoir plus sur Simulink dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
