Error using horzcat Dimensions of matrices being concatenated are not consistent.

4 views (last 30 days)
Hi ,
I need help with this problem I am new to MATLAB please help me!
I am trying to do this operation.
V = [ g1 g2 V ];
where g1 is 256*1 complex double
g2 is 18*1 complex double
V is 256*39 complex double.
I am getting the above mentioned error.
Regards,

Accepted Answer

Thorsten
Thorsten on 7 Nov 2019
You can only concatenate vectors horizontally if they have the same number of rows. But here you have 256 and 18 rows. sp this does not work. You can add zeros to g2 to blow it up to a 256 x 1 vector using
g2(256) = 0;
before you use
V = [ g1 g2 V ];
Another option would be to use cell arrays. The elements can have different sizes:
V = {g1, g2, V};

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!