what wrong about this error

조회 수: 1 (최근 30일)
ahmed  hamdy
ahmed hamdy 2019년 5월 21일
댓글: ahmed hamdy 2019년 5월 22일
In an assignment A(I) = B, the number of elements in B and
I must be the same.
  댓글 수: 6
Rik
Rik 2019년 5월 22일
Code Analyzer found 142 warnings for your code. Maybe you should deal with those...
If you had posted the error message, we wouldn't need to search through over 400 lines of barely commented code to find the error. We are also missing the loadcase function (and the files it presumably loads) and the input to actually run the function.
The answer James has given is already the answer to your question. If you want specific guidance, post a specific part of the code. Use the debugger (click the 'pause on error' option). Then you can see the sizes of the arrays in the offending line of code.
Also note that it is generally a good idea to try to keep the size of your functions small and use subfunctions. Also, don't use global variables.
ahmed  hamdy
ahmed hamdy 2019년 5월 22일
thanks alot

댓글을 달려면 로그인하십시오.

답변 (1개)

James Tursa
James Tursa 2019년 5월 22일
편집: James Tursa 2019년 5월 22일
The error message appears when you have a mismatch in the number of elements on the rhs and the number of elements on the lhs. E.g.,
>> x = 1:10
x =
1 2 3 4 5 6 7 8 9 10
>> y = 40:43
y =
40 41 42 43
>> x(1:5) = y % <-- Try to assign 4 elements into 5 elements doesn't work
In an assignment A(:) = B, the number of elements in A and B must be the same.
>> x(1:4) = y % <-- Assigning 4 elements into 4 elements does work
x =
40 41 42 43 5 6 7 8 9 10

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by