how can i assign a variable existing in the workspace to a char ?
Show older comments
Hello everyone,
how can i assign a variable existing in the workspace to a char ?
For example, in my workspace i have: label = 1 (double)
in a script i have a variable X = 'label' (char), so i want it to take the value of the variable label so that X = label = 1.
Is it possible to do such thing ?
Thanks alot for your help
Accepted Answer
More Answers (1)
Jan
on 26 Feb 2019
Use a struct and dynamic field names:
% In the current workspace:
Data.label = 1;
Result = YourFunction(Data);
function Result = YourFunction(Data)
Field = 'label';
Result = (Data.(Field) + 1) ^ 2;
end
Remember, that it is a DON'T to access variables dynamically: See TUTORIAL: How and why to avoid Eval
But fieldnames are efficient and clean.
5 Comments
Daher
on 26 Feb 2019
The problem is that you assigne a variable "automatically". As explained exhaustively, this is a shot in your knee. Finding even more complicated to handle this too complicated mistake is not efficient, but recreate the code, such that the access of the variables is trivial.
The suggested evalin works, and it increases your chance to create a code, which is such complicated, that you cannot debug it anymore.I've seen too many codes, which cannot be maintained due to such design errors. Please read the suggested tutorial again, until you understand the meaning. The topic has been discussed several hundrets times with newcomers and the result was the same every time: Prefer a clean programming style without dynamic access of variables.
By the way, this function:
function y = thd_equal(label,thd)
if(label == thd)
y = true;
else
y = false;
end
end
does exactly the same as:
label == thd
which is much shorter.
Fangjun Jiang
on 26 Feb 2019
I think using table would solve your problem.
doc table
doc readtable
Jan
on 26 Feb 2019
@Daher: "I managed to extract all the variables into my workspace" - I assume the problem is here. It would be much easier to import the strings as a list and the data as a matrix. Then the access is easy: with the strcmp you find the corresponding row directly.
Fangjun Jiang's idea hits the point also: With importing the data as a table object, the access of the named rows is trivial also. Importing the data as a struct is equivalent, but more handmade.
Daher
on 27 Feb 2019
Categories
Find more on Labels and Annotations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!