Get multiple variables in an input
조회 수: 11 (최근 30일)
이전 댓글 표시
What I want to do is to get separate variables for the user inputted "row" and "column". Is there a function I can use to do this? My code so far is:
prompt= 'Enter your next move (‘row’ space ‘column’)'
댓글 수: 0
답변 (1개)
per isakson
2015년 11월 10일
편집: per isakson
2015년 11월 10일
Run
cac = inputdlg( 'Enter your next move ( row,col;row,col;...)' );
num = str2num( cac{:} )
and input:   1,2;3,4;5,6.   and get the output
num =
1 2
3 4
5 6
The user may also input two (or any number) whole numbers separated with space.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Whos에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!