Get the numeric value of a variable using sprintf
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Alexandre
am 25 Okt. 2015
Bearbeitet: Stephen23
am 19 Jun. 2019
Hi,
How can I get the numerical value of a variable doing something like this:
num_1=2;
num_2=5;
num=3=9;
random_num=randsample([1 2 3],1)
Time=sprintf('num_%d',random_num)
Then I get Time=num_X but what I want is to get the numerical value associated to num_X
Any clue on how to do it?
Thank you very much.
1 Kommentar
Akzeptierte Antwort
Star Strider
am 25 Okt. 2015
The only way I can think to do it is to use the ‘evil eval’:
Time - num_2
Time = eval(Time)
Time =
5
But as Walter wrote, it’s best to avoid it altogether.
0 Kommentare
Weitere Antworten (1)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!