필터 지우기
필터 지우기

save all variables of the workspace excluding the graphical objects within a function

조회 수: 8 (최근 30일)
Hello, I would like to define a function saving all the variables in the base workspace, excluding all figures object. the reason for trying to do it within a function is because I want to be able to define the name of the file where the variables will be saved and pass this name as argument to the function. I found a way to do it outside a function http://stackoverflow.com/questions/38131166/save-matlab-workspace-without-saving-or-deleting-figures but this won't work within a function as it will only save the local variables of the function.
I could go on without defining this function but it would be much better if I could set the name of the saved file without opening the .m file every time to change it.
Thanks in advance,
Bastien

답변 (1개)

Walter Roberson
Walter Roberson 2017년 1월 26일
evalin('base', 'whos')
This will get you a structure with a list of variables. You can examine the class field to rule out ones that definitely not graphics. The ones that are left, you can loop through evalin base testing for graphics. In particular for R2014b or later, https://www.mathworks.com/help/matlab/ref/isgraphics.html . (But double-check what happens to graphics objects that have been marked as deleted.)

카테고리

Help CenterFile Exchange에서 Graphics Object Programming에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by