Reference to a cleared variable x
34 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Respuesta aceptada
Image Analyst
el 1 de Oct. de 2017
Editada: Image Analyst
el 30 de Mzo. de 2020
You used to have x, but now you don't anymore. You cleared it somehow, like by calling the clear() or delete() function. For example, if you have any lines like these inside your function, remove them:
clear all; % Remove this line from inside any function.
clearvars; % Remove this line from inside any function.
clear('x'); % If you have this in your function, remove it.
Can't say much more without seeing your code.
8 comentarios
Luigi Frunzo
el 17 de Mayo de 2023
Movida: Stephen23
el 11 de Ag. de 2023
Thanks! Thanks a lot I am becaming crazy!!!
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!