In an assignment A(I) = B, the number of elements in B and I must be the same.

조회 수: 2 (최근 30일)
Hi ,
I am new to MATLAB, I need help with this problem please help!
I'm trying to do this operation.
A is 256 * 1 double
B is 18 * 1 complex double
I am trying to do
A (17: 240) = B;
But I am getting this error! what might be the reason?
"In assignment A (I) = B, the number of elements in B and I must be the same."
  댓글 수: 3
Stephen23
Stephen23 2019년 11월 8일
"But I am getting this error! what might be the reason?"
You are trying to assign 18 elements to 224 elements.
On the LHS you use indexing to refer to 224 elements of the array A.
On the RHS you have an array with 18 elements.
Given that the RHS only has 18 elements, what do you expect the remaining 206 elements to be filled with? As the error message states, both the LHS and the RHS need to refer to the same number of elements.
Yulia M
Yulia M 2019년 11월 11일
Thank you all for the valuable answers!

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

채택된 답변

Shubham Gupta
Shubham Gupta 2019년 11월 8일
Your:
A(17:240) % is a vector of 224 elements ((240-17+1)x1)
while
B % is a vector of 18 elements (18x1)
that's why you are getting the error

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by