Any help with the syntax of this function, I keep getting errors?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
t = 20:20:100
N = 220 / (1 + 10 * (0.83 ^ (x)));
plot(t, N)
0 Kommentare
Antworten (1)
Walter Roberson
am 10 Aug. 2021
t = linspace(20,100);
N = 220 ./ (1 + 10 * (0.83 .^ (t)));
plot(t, N)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
