<< assignin | Memory manager functions | global >> |
clear |
clear variable_name |
clear global |
clear all |
clear mex |
clear variables |
clear functions |
clear function_name |
clear mexfunction_name |
clear variable_name_1 ... variable_name_N |
clear global variable_name |
a string: variable name.
clears all global variables.
clears all variables in all scopes
clears all mex functions in all scopes
clears all variables in current scope.
clears cache of macros functions and associated persistent variables.
clears persistent variables of a function.
clears mex function (see mexAtExit).
clear is used to remove variable given by its name.
clear can also delete handle object if a function handle_TYPE_clear is defined.
A = 3;
who
clear A
who
A
who.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET