[A,v] shows error: dimensions of arrays being concatenated are not consistent
Show older comments
Hi everyone, I'm having a little problem. I tried to create a matrix using an already existing one and a vector just by putting it next to the matrix. I expected a new matrix made by the original plus a last new line of zeros and a new column made up by the vector I added. I remember it worked in Matlab2023b, but now it shows me this error
A=[1,2; 3,4]
v=[1;9;9]
A=[A,v];
1 Comment
Stephen23
on 19 Oct 2024
What exact size do you expect A to have? What values do you expect A to contain?
Accepted Answer
More Answers (0)
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!