Array Error Must be Positive

7 views (last 30 days)
Juan Barragan
Juan Barragan on 5 Mar 2021
Commented: Walter Roberson on 5 Mar 2021
I keep getting an error for the array. I'm not sure what is wrong

Answers (1)

David K.
David K. on 5 Mar 2021
If you read the whole error message you see this :
Array indices must be positive integers or logical values.
This is caused by the values of t in:
y(t) = ...
The issue in this case is not that they are not positive. It is that they are not integers.
This is actually solved very simply as such:
t = 0:.1:5;
b = [2;4.7;9.2;]
y = 1-exp(-b*t)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!