Unable to perform assignment because the left and right sides have a different number of elements.

조회 수: 2 (최근 30일)
Please I need help with my code, it is giving me this error and I can't fix it. Thanks for helping...

채택된 답변

KSSV
KSSV 2020년 11월 22일
The error is clear; when you try to save more number of elements in an array which initialized with less number.
Example:
A = zeros (1.10);
A (1) = rand;
A (2) = rand (1,2); % this will throw error, you have to save only one element but you are saving two elements
In your case, check what is dimension of RHS created and what dimension LHS is initialized.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Operators and Elementary Operations에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by