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

239 次查看(过去 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?

采纳的回答

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