What this error 'Dimensions of arrays being concatenated are not consistent' means?

조회 수: 248 (최근 30일)
Error using vertcat
Dimensions of arrays being concatenated are not consistent.
Error in Make_forward_model (line 85)
Vpar = [Vpar.'; 0];
Does it Vpar = [Vpar.'; 0]; to take the transpose?
  댓글 수: 2
SALAH ALRABEEI
SALAH ALRABEEI 2021년 6월 13일
If the dimension of Vpar is >1, you cannot concate it with 0. If it is just one array, you can try this instead.
%
Vpar(end+1) = 0;

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

채택된 답변

Abhinav Gupta
Abhinav Gupta 2021년 6월 13일
편집: Abhinav Gupta 2021년 6월 13일
This type of error is encountered when we try to vertically concatenate arrays that do not have compatible sizes. As an example, lets say we have 2 matrices A and B. To vertically concatenate them, they must have equal number of columns
>> A = ones(2,3);
>> B = zeros(4,3);
>> C = [A;B]
C =
1 1 1
1 1 1
0 0 0
0 0 0
0 0 0
0 0 0
And if we mismatch the number of columns in A and B, and concatenate them, we get this error.
>> B = zeros(2,2)
B =
0 0
0 0
>> C = [A;B]
Error using vertcat
Dimensions of arrays being concatenated are not consistent.
For more information, you could refer to this documentation page:
Hope this helps.

추가 답변 (1개)

Image Analyst
Image Analyst 2021년 6월 13일

카테고리

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