Effacer les filtres
Effacer les filtres

Put two columns matrix into 1 row matrix

1 vue (au cours des 30 derniers jours)
Phong Pham
Phong Pham le 9 Nov 2012
I have 2 file such as file1 and file2
file1 contains 52x1 matrix such as
x1
x2
etc
file 2 contains 52 x1 matrix such as
y1
y2
etc
Now I want two files to combine in one file with 1 row matrix in the order like
file 3= [ x1 y1 x2 y2 x3 y3 x4 y4 ... etc]
Anybody knows how to do it. Please helps . Thanks

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 9 Nov 2012
x - your array [x1;x2;...]
y - your array [y1;y2;...]
xy = reshape([x, y].', 1, []);

Plus de réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 9 Nov 2012
Modifié(e) : Azzi Abdelmalek le 9 Nov 2012
x=[1;2; 3; 4;5]
y=[11 ; 22;33;44;55]
out=[x y]'
out=out(:)'

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by