Why is exist(variable,'var') not seeing a variable?

21 vues (au cours des 30 derniers jours)
Bogdan Dzyubak
Bogdan Dzyubak le 24 Sep 2018
I have a function to which a variable is passed. The variable exists:
'signedOrNot = signed'
When I call 'exist signedOrNot var' it is found:
ans = 1
But when I use exist(signedOrNot,'var'), as I would in an if statement, it is not:
ans = 0
Any thoughts?

Réponse acceptée

Fangjun Jiang
Fangjun Jiang le 24 Sep 2018
exist('signedOrNot','var')
  1 commentaire
Bogdan Dzyubak
Bogdan Dzyubak le 24 Sep 2018
Right, of course... Thanks for reminding.

Connectez-vous pour commenter.

Plus de réponses (1)

Steven Lord
Steven Lord le 24 Sep 2018
This line of code tests whether the variable with the name signedOrNot exists in the workspace.
exist('signedOrNot', 'var')
This line of code tests whether the variable whose name is stored in the variable signedOrNot exists in the workspace.
exist(signedOrNot, 'var')
Compare:
% if a variable by this name exists, choose a different name
signedOrNot = 'thisVariableShouldNotExist';
passingName = exist('signedOrNot', 'var') % true, signedOrNot exists
passingContentsOfVariable = exist(signedOrNot, 'var') % false, thisVariableShouldNotExist doesn't
with:
x = 42;
signedOrNot = 'x';
passingName = exist('signedOrNot', 'var') % true, signedOrNot exists
passingContentsOfVariable = exist(signedOrNot, 'var') % true, x exists

Catégories

En savoir plus sur Variables dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by