Any help with the syntax of this function, I keep getting errors?

2 Ansichten (letzte 30 Tage)
Louis Chinasing
Louis Chinasing am 10 Aug. 2021
Beantwortet: Walter Roberson am 10 Aug. 2021
t = 20:20:100
N = 220 / (1 + 10 * (0.83 ^ (x)));
plot(t, N)

Antworten (1)

Walter Roberson
Walter Roberson am 10 Aug. 2021
t = linspace(20,100);
N = 220 ./ (1 + 10 * (0.83 .^ (t)));
plot(t, N)

Community Treasure Hunt

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

Start Hunting!

Translated by