How to store a matrix obtained in a particular file/directory??
Afficher commentaires plus anciens
Good morning.. In fact, say I am running a program which generates a parity-check matrix of size 1000X2000... I would like to know how to save that parity check matrix for later use without having to run the program each time since it takes a lot of time...
Réponse acceptée
Plus de réponses (1)
Grzegorz Knor
le 17 Oct 2011
save command stores variable in a MATLAB formatted binary file (MAT-file):
save(filename, 'your_matrix')
To load data from MAT-file into workspace use load function:
load(filename)
2 commentaires
Synchronie
le 17 Oct 2011
Grzegorz Knor
le 17 Oct 2011
Is 12X16H_matrix your file name and H1 matrix name?
If so, then:
save('12X16H_matrix', 'H1')
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!