How to store a matrix obtained in a particular file/directory??
Show older comments
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...
Accepted Answer
More Answers (1)
Grzegorz Knor
on 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 Comments
Synchronie
on 17 Oct 2011
Grzegorz Knor
on 17 Oct 2011
Is 12X16H_matrix your file name and H1 matrix name?
If so, then:
save('12X16H_matrix', 'H1')
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!