How do i get multiple inputs from keyboard and store them in an array
15 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How do i get multiple inputs from keyboard and store them in an array
% code
valstring = input('enter the number of points ', 's');
valparts = regexp(valstring, '[ ,]', 'split');
values = str2double(valparts);
I want to store them as an array to plot a graph.
1 Commento
Walter Roberson
il 23 Feb 2014
What you are doing should work, resulting in "values" being a vector.
Risposte (1)
Dishant Arora
il 23 Feb 2014
array = input('Enter elements of array'); %%Enclose the input in square braces when matlab asks
%%for it
0 Commenti
Vedere anche
Categorie
Scopri di più su Entering Commands in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!