Any help with the syntax of this function, I keep getting errors?
Show older comments
t = 20:20:100
N = 220 / (1 + 10 * (0.83 ^ (x)));
plot(t, N)
Answers (1)
t = linspace(20,100);
N = 220 ./ (1 + 10 * (0.83 .^ (t)));
plot(t, N)
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!