Borrado de variables de la memoria, con la ayuda de la operación clearvars. La operación clearvars se utiliza para borrar las variables especificadas de la memoria o del espacio de trabajo actualmente activo.
Sintaxis:
clearvars variables clearvars -except keepVariables
Parámetros: Esta función acepta un parámetro.
- variables: Estas son las variables especificadas que se van a borrar.
Ejemplo 1
Matlab
% MATLAB code for variables "x" and "y" % cleared from the memory and variable "z" % will be as it is. x = 5; % Initializing y = 10; z = 15; % Calling the clearvars operation over % the x and y variables clearvars x y % Getting the remaining variables whos
Producción:
Ejemplo 2
Matlab
% MATLAB code for all variables will be % cleared except "C" and "D". A = 5; % Initializing of variables B = 10; C = 15; D = 20; E = 25; % Calling the clearvars operation to % clear above variables except C and D clearvars -except C D % Getting the remaining variables whos
Producción:
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA