Effacer les filtres
Effacer les filtres

Problem with combining .mat files

1 vue (au cours des 30 derniers jours)
adele alias
adele alias le 20 Juin 2019
Commenté : Adam Danz le 21 Juin 2019
Hi, I want to combine two .mat files that have the same matrice variables. The problem is when I combine them they are combined horizontally and I wish for them to be combined vertically.
Ex :
A (file1)=`
(222
111
333)
A(file2)=
(111
222
333)
Combined =
(222 111
111 222
333 333)
  3 commentaires
adele alias
adele alias le 21 Juin 2019
datacell1 = load('file1.mat');
datacell2 = load('file2.mat');
combined2.uu = [datacell1.uu, datacell2.uu];
combined2.vv = [datacell1.vv, datacell2.vv];
combined2.x1 = [datacell1.x1, datacell2.x1];
combined2.y1 = [datacell1.y1, datacell2.y1];
save('Combinedfile.mat', '-struct', 'combined2')
It combines the matrices horizontally and not vertically like I wish it would.
Adam Danz
Adam Danz le 21 Juin 2019
To concatenate vertically,
datacell1 = load('file1.mat');
datacell2 = load('file2.mat');
combined2.uu = [datacell1.uu; datacell2.uu];
combined2.vv = [datacell1.vv; datacell2.v
% ^ semicolon

Connectez-vous pour commenter.

Réponses (1)

Himanshu Tripathi
Himanshu Tripathi le 21 Juin 2019
  1 commentaire
adele alias
adele alias le 21 Juin 2019
Thankyou ! I used the function vertcat and it worked.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by