Reference to a cleared variable x
36 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Risposta accettata
Image Analyst
il 1 Ott 2017
Modificato: Image Analyst
il 30 Mar 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 Commenti
Luigi Frunzo
il 17 Mag 2023
Spostato: Stephen23
il 11 Ago 2023
Thanks! Thanks a lot I am becaming crazy!!!
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!