passing a mat file variable to a function
조회 수: 9 (최근 30일)
이전 댓글 표시
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
채택된 답변
dpb
2014년 2월 24일
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
Yaser Khojah
2018년 7월 20일
Can you show please how the function var_perhaps_modified=myfun(inputfilename) works?
dpb
2018년 7월 20일
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...
참고 항목
카테고리
Help Center 및 File Exchange에서 Workspace Variables and MAT Files에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!