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

4 visualizzazioni (ultimi 30 giorni)
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,

Risposta accettata

Thorsten
Thorsten il 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};

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by