Get multiple variables in an input
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
per isakson
il 10 Nov 2015
Modificato: per isakson
il 10 Nov 2015
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 Commenti
Vedere anche
Categorie
Scopri di più su Whos in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!