Effacer les filtres
Effacer les filtres

How to get output object name created by a method in caller workspace inside the method

3 vues (au cours des 30 derniers jours)
In order to avoid overwriting the object when the property of that object gets an update, the output object only needs to be constructed when it doesn't exist in the caller workspace.
function zo = update(obj, zi)
% obj is an object of a class; while zi & zo are objects of the same class
% different than obj.
if ~exist(zo) % if zo doesn't exist already in parent workspace
zo = const(); % construct object zo
end
zo = func(zi)
end
In the parent workspace, responding to an event of A, an object Y updates its property based on object X.
Y = A.update(X)
So, inside the function (method) definition, the line
if ~exist(zo)
should have been
if ~exist(Y)
How do I know what name (like "Y") the user have assigned "zo" to from within function "update"? In another word, I'm looking for the equivalent of function inputname() for output.
  4 commentaires
Stephen23
Stephen23 le 12 Mai 2018
Modifié(e) : Stephen23 le 14 Mai 2018
I don't see why it is required to mess around with output names, nor would this actually help your given example: somehow (and it will not be simple or efficient) determining the name of the output argument does not tell you if that variable has already been defined previously (which is apparently your stated aim). So your approach is likely a red herring anyway.
Personally I would go for a much simpler option in the caller workspace, something like this:
flag = true;
...
if flag
Y = define_object(...);
flag = false;
end
Using a flag will be much more efficient than using exist. You can also easily pass the flag as an input/output argument.
Walter Roberson
Walter Roberson le 14 Mai 2018
Please do not close questions that have an answer

Connectez-vous pour commenter.

Réponse acceptée

Jan
Jan le 12 Mai 2018
This sounds like meta-programming: Using an indirect way around the standard channels to provide information. This would work e.g. by parsing the source code of the calling function. But this is far too complicated and prone to errors. Therefore I'm convinced that the best approach to solve your needs is to chose a different design. Provide the required data as inputs instead of digging in the callers workspace.

Plus de réponses (0)

Catégories

En savoir plus sur Methods 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