Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Assigning a variable in a function that is available in the function

1 vue (au cours des 30 derniers jours)
William Mills
William Mills le 14 Oct 2014
Clôturé : MATLAB Answer Bot le 20 Août 2021
I have a function which creates variables (which I want to use in the function only) that are listed in a file that contain the actual variable name and the associated starting/default value. I have tried assign(ws, 'var', val) where 'var' and val come from the file. The problem is these are being assigned to he base ws (regardless if ws = 'base' or 'caller'). I thought I could use evalin but that function needs to know the name of the variable you want to assign it to and that name comes from the file.
  3 commentaires
William Mills
William Mills le 14 Oct 2014
It is written to read a user file that has override values on some of the variables. If there is an override value the function creates the variable named by the file and assigns the variable the data supplied by the user, otherwise the variable is created and is assigned a default value. I assignin was creating the variables ok and giving them the right values but it was in the base workspace and not in the functions.
So I think eval function might work... like this.. eval([MatchTableHead_General{2,i}(:,:),'= num(:,ColumnNo);']); where 'MatchTableHead_General contains the list of possible variable names, i = the one that the user has selected to override and 'num(:,columnNo) is the value supplied by the user I think this works.
Sean de Wolski
Sean de Wolski le 14 Oct 2014
That sounds really difficult. Can you provide an actually minimal working example. You should not use or need eval to do this.

Réponses (2)

Robert Cumming
Robert Cumming le 14 Oct 2014
Create a sub function which assigns (using assignin) your variables in the caller function where the caller function is the one where you actually want the variables.

Matt J
Matt J le 14 Oct 2014
Modifié(e) : Matt J le 14 Oct 2014
Methods that avoid eval and assignin are preferable (by far) for this kind of thing. You should use load as Sean suggested, but with an output argument
defaults=load('YourFile.mat');
You should also have the user provide a similar structure whose fields are the overrides
override.var1=val1
override.var2=val2;
etc...
Now you just loop through the fields of "defaults" and replace with overrides as needed,
settings=defaults;
fnames=fieldnames(settings);
for i=1:length(fnames)
if isfield(overrides,fnames{i})
settings.(fnames{i})=overrides.(fnames{i});
end
end
The desired data are now all in the fields of the structure "settings". If you strongly prefer them unpacked into separate variables, you could do so with STRUCTVARS ( Download ).

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by