Azzera filtri
Azzera filtri

Requesting input in a certain format.

1 visualizzazione (ultimi 30 giorni)
ck
ck il 28 Giu 2016
Risposto: Image Analyst il 28 Giu 2016
Suppose we should get 4 variables such as age,gender,height,birth date, instead of taking it in four lines I want to take input in a certain matrix such as [a b c d], where a,b,c,d are required variables say a= age, b=gender,c=height,d=birth date.
so if I give [40 'm' 5.7 6.15.1995], it show acquire the values for further processes . How can I do it?
Thank you.

Risposta accettata

Walter Roberson
Walter Roberson il 28 Giu 2016
Use the 's' option for input() to get a string, and then parse the string.
Alternately, require that the user enter
{40 'm' 5.7 '6.15.1995'}
the {} is required in order to mix numeric and string.

Più risposte (1)

Image Analyst
Image Analyst il 28 Giu 2016
I don't know why you want to "take it as a matrix". Why not simply use inputdlg where you get one field for each entry, or else build your own GUI with GUIDE and have edit fields for each?

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by