Get the numeric value of a variable using sprintf

조회 수: 2 (최근 30일)
Alexandre
Alexandre 2015년 10월 25일
편집: Stephen23 2019년 6월 19일
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.

채택된 답변

Star Strider
Star Strider 2015년 10월 25일
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.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2015년 10월 25일

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by