Calling data with using rand command

조회 수: 1 (최근 30일)
FURKAN CEVAHIR
FURKAN CEVAHIR 2019년 2월 5일
댓글: KSSV 2019년 2월 5일
Hi, I want to call data in the matrix by using string which is defined by rand command.
A=[1 2]
B=[2 3]
C=[3 5]
corners = 'ABC'
randompick = corners(randi(numel(corners)))
disp(randompick)
randompick(1)
Here I cant get any first row numbers of the A, B, and C.
What's wrong in this script?
Thanks.
Desired answer is
Same as what A(1), B(1) or C(1) give after randomly chosing.
  댓글 수: 2
madhan ravi
madhan ravi 2019년 2월 5일
what‘s the desired output?
FURKAN CEVAHIR
FURKAN CEVAHIR 2019년 2월 5일
Same as what A(1), B(1) or C(1) give after randomly chosing.

댓글을 달려면 로그인하십시오.

채택된 답변

KSSV
KSSV 2019년 2월 5일
A=[1 2
2 3
3 5] ;
corners = 1:size(A,1) ;
randompick = corners(randi(numel(corners)))
disp(randompick)
idx = randompick(1) ;
iwant = A(idx,1)
  댓글 수: 6
FURKAN CEVAHIR
FURKAN CEVAHIR 2019년 2월 5일
My apologize, thanks..
KSSV
KSSV 2019년 2월 5일
No issues.....No aplogizes.......you are welcome.......

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Numeric Types에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by