passing a mat file variable to a function
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Bernhard
el 24 de Feb. de 2014
Comentada: Stephen23
el 20 de Jul. de 2018
I have written a function myfun.m which works on a very large input variable var stored in a file myfile.mat in the current folder. If I first load var into the workspace and then call myfun(var), var requires memory of twice its size because it is kept both in the base and the function workspace. How can I instead pass just the names of myfile.mat and var on calling myfun, and load var from within myfun? Thank you!
0 comentarios
Respuesta aceptada
dpb
el 24 de Feb. de 2014
A) Just put the call to load the variable in your function, perhaps with a call to uigetfile to enable the user to select the file interactively, or
B) Put the filename in the argument list instead of var and return var (or whatever is the desired result instead of having it in the argument list --
function var_perhaps_modified=myfun(inputfilename)
....
or,
C) Use nested functions and then the copy of var can be shared.
2 comentarios
Yaser Khojah
el 20 de Jul. de 2018
Can you show please how the function var_perhaps_modified=myfun(inputfilename) works?
dpb
el 20 de Jul. de 2018
It's just a prototype for whatever the OP has that would accept the filename as a string variable instead of passing the array.
In the end, however, memory usage will probably be the same either way; ML will only "copy on write" if the argument is modified and if the resulting array is modified inside the function there will need be a copy for the target, anyways...
Ver también
Categorías
Más información sobre Workspace Variables and MAT Files en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!