How to store an object (calculated in a function) so that we can use it later with a different script?

1 view (last 30 days)
So basically I have a script that calculates a lot of stuff, and in the process it creates an object that is not stored/saved in the command window's workspace. I have no way to use it unless I add code to the existing scripts.
I would like to feed that object to another script.
How can I store/save this object so that I can re-use it in the future?

Accepted Answer

Gareth Thomas
Gareth Thomas on 7 Jul 2014
Typically people use MAT files for this.
a = rand(10);
b = rand(12);
save myMat a b
clear all
load myMat
Hope that this helps
Here is official example off their website
  3 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on Search Path in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!