How to store a matrix so that I can call upon it in any other file I am working in?
    4 views (last 30 days)
  
       Show older comments
    
Hi there,
I am trying to save a matrix of data that I want to use, so that I can call upon it whenever I wish. Plus, I don't want it taking up space in my other script I am working on. I have been searching online how to do this apparent simple task, but can't seem to get it right.
So say I'm in a file called Frame2.mat, and the matrix is:
A = rand(10,10)
Then I go to another file I am working in and want to call upon matrix A and extract the first column.
So in this different file (not Frame2) I want to use:
T = A(:,1)
How do I do this?
Many thanks
Scott
1 Comment
  Stephen23
      
      
 on 25 Jul 2025
				"So say I'm in a file called Frame2.mat, and the matrix is: A = rand(10,10)"
Are you attempting to write a .mat file yourself as a text file? That does not make sense.
Accepted Answer
  Torsten
      
      
 on 24 Jul 2025
        
      Edited: Torsten
      
      
 on 24 Jul 2025
  
      Declare the matrix as "global" or pass it as input argument to all functions where it is needed.
Or save it as a .mat-file and load it where it is needed.
8 Comments
  Walter Roberson
      
      
 on 24 Jul 2025
				Do not save your variable as a .m file, save it as a .mat file.
Or if you really want, save it as a .csv or .txt file that you then readmatrix at need, if you need the file to be editable.
You could also consider
function A = loadA()
  persistent A
  if isempty(A)
      A = load('Matrix.mat', 'A').A;
  end
end
after which you would call
A = loadA();
This had the advantage of only reading in A once and remembering the cached value the second and later times.
More Answers (0)
See Also
Categories
				Find more on Whos 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!




