Create variable with name from other variable string

32 views (last 30 days)
Hello,
My question is, if i have a string variable, coulf i assing that string as a name for a new variable?
For example, if i have
name_string = 'name_var';
can i have
name_var = 5;
somehow wihouth me writing the actual code?

Accepted Answer

Joseph Cheng
Joseph Cheng on 26 Jun 2021
While it is not adviseable to have variables created in this way maybe you have a good reason to but still un-adviseable but here you go:
name_str = 'name_var';
eval(sprintf('%s = 5',name_str))
name_var = 5
disp([name_str 'has been assigned to ' num2str(name_var)])
name_varhas been assigned to 5
  3 Comments
Stephen23
Stephen23 on 28 Jun 2021
Edited: Stephen23 on 28 Jun 2021
@Victor Andrés Sánchez Zurita: nothing in your description requires dynamically named variables.
Most likely this is a complex and inefficient approach to processing your data.

Sign in to comment.

More Answers (0)

Categories

Find more on Numeric Types in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!