How to combine mat file
Afficher commentaires plus anciens
I have two mat files named databaseA.mat and datalabelB.mat which have different sizes, databaseA.mat is 8100 x 80 double and datalabelB.mat is 1 x 80 double. I need to combine them into one mat file but don't change their size. Actually I have combined them with the following code
ALoad = load( 'databaseA.mat' );
BLoad = load( 'datalabelB.mat' );
save( 'databaseAB.mat', 'ALoad' );
save( 'databaseAB.mat', 'BLoad', '-append' );
but result "struct" type data, whereas I don't desire it. Could you correct it? Thank you for your help.
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!