I keep getting the error "Array indices must be positive integers or logical values?"

I have been editing a code I found that models a 2 cart system using Euler's Method in an attempt to make it a 3 cart system. However, on line 63 I am recieving an error that states "Array indices must be positive integers or logical values." I am not sure what this means or how to fix it. Any help would be apprecieted. Thanks!

 채택된 답변

In expressions like this one
k2(x2(n,:)-x1(n,:))
MATLAB is trying to index into the variable k2. You need to put in the multiplication sign explicitly:
k2.*(x2(n,:)-x1(n,:))

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품

태그

질문:

2019년 12월 6일

댓글:

2019년 12월 6일

Community Treasure Hunt

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

Start Hunting!

Translated by