How to clear workspace from a function?
18 次查看(过去 30 天)
显示 更早的评论
Hi,
I want to create a function that will perform some maintenance operations at the beginning of the script. For example, this function takes a few arguments that will lead to specific initialisations of paths and variables, and above all, clear the workspace from the previous run.
I want to put it in a specific function as the job requires dozens of lines which are quite irrelevant in the work. And I want my "main' script to be as short, readible and high-level as possible.
Below only the first lines of the function.
function init_step(varargin)
clearvars -except varargin
close all
clc
However if I do 2 consecutive runs, it does not clear the workspace. If I want to, I need to explicitely write the "clear" command in the main script, which I try to avoid.
Is there any way to do it?
Thanks in advance.
2 个评论
Stephen23
2023-1-17
编辑:Stephen23
2023-1-17
The simple solution would be to make the "specific function" a script, then when you run it, it will clear the worksapce of your main script. But.... using scripts and needing to clear workspaces is a strong indication that you should to refactor your code:
采纳的回答
Bora Eryilmaz
2023-1-16
编辑:Bora Eryilmaz
2023-1-16
Functions do not keep their variables across calls to them unless a variable is specifically defined in the function using the "persistent" keyword. So, you do not need to try to clear variables in a function workspace in this scenario. Each call to the function has its own variable scope (i.e., workspace), which is already clear when the function starts executing, except of course for the variables that you pass to the function as input arguments.
If the function accesses the variables in the base workspace (using evalin, etc.), that is a different question, in which case you can use the clear command.
0 个评论
更多回答(2 个)
Hiro Yoshino
2023-1-16
One way you can delete variables from the Function Workspace is that you make your variables "global" so you can have access from anywhere.
0 个评论
Louis Tomczyk
2023-1-17
2 个评论
Bora Eryilmaz
2023-1-17
编辑:Bora Eryilmaz
2023-1-17
You cannot clear the variables in the main function by calling clear inside another function (init_step).
You can probably describe why you are trying to do something like this as this is a highly unusual thing to try to do. Then someone can probably offer a better workflow/solution. For example, you can make init_step return the initial values of the variables that you are trying to clear. Something like this:
[a, b, c] = init_step(...)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!