Array Error Must be Positive

조회 수: 1 (최근 30일)
Juan Barragan
Juan Barragan 2021년 3월 5일
댓글: Walter Roberson 2021년 3월 5일
I keep getting an error for the array. I'm not sure what is wrong

답변 (1개)

David K.
David K. 2021년 3월 5일
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)

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by