Effacer les filtres
Effacer les filtres

how to save values in matfile as array

2 vues (au cours des 30 derniers jours)
Elysi Cochin
Elysi Cochin le 3 Déc 2012
i wanted to create a matfile...
stats=[ statmat1 statmat2 statmat3 ......... statmat24 statmat25 statmat26];
i did like this... each statmat1 to statmat26 contains 8 values... now when i save in the above manner the values are getting saved in one single row of matfile having 208 columns....
how can i save each statmat values in one matfile having 26 rows each having 8 column values... please reply...

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 3 Déc 2012
Modifié(e) : Andrei Bobrov le 3 Déc 2012
Elysi wrote: " ...stats = [ statmat1 statmat2 statmat3 ......... statmat24 statmat25 statmat26];..."
out = reshape(stats,8,[]).';

Plus de réponses (1)

Ilham Hardy
Ilham Hardy le 3 Déc 2012
stats=[ statmat1;statmat2;statmat3;......... statmat24;statmat25;statmat26];

Catégories

En savoir plus sur Workspace Variables and MAT-Files 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