whats the meaning of these question? " Subscripted assignment dimension mismatch."

조회 수: 30 (최근 30일)
in an optimization problem i encounter with this message . whats the problem and how can i solve it?
  댓글 수: 5
Walter Roberson
Walter Roberson 2018년 8월 13일
Renzo Lanfranco also commented
Rude answer
Walter Roberson
Walter Roberson 2018년 8월 13일
Renzo Lanfranco:
The response was not rude. It was correct: the way to solve the problem is to learn how to use the debugger.

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

채택된 답변

AJ von Alt
AJ von Alt 2014년 1월 28일
편집: AJ von Alt 2014년 1월 28일
This error occurs when the dimensions of the array resulting from the assignment expression do not match the explicitly defined dimensions of the assignment variable.
Basically, the dimensions of the arrays on the left and right hand side of the equals sign don't match.
The code
A(1,1) = [1 2 3; 4 5 6; 7 8 9]; %you can't store a 3x3 matrix in a 1x1 matrix
produces the error
Subscripted assignment dimension mismatch.
because A(1,1) is size 1x1 and [1 2 3; 4 5 6; 7 8 9]; is size 3x3.
You can solve this error by making sure that the dimensions match.
A(1:3,1:3) = [1 2 3; 4 5 6; 7 8 9]; % Doesn't error because both arrays are 3x3

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by