input a 1*3 vector

1 次查看(过去 30 天)
Khalid AL Harthi
Khalid AL Harthi 2015-11-11
编辑: Thorsten 2015-11-11
how can I make the user inputs an array of 1*3 dimensions for example x=input('your guess') x= [# # #]

回答(3 个)

Stalin Samuel
Stalin Samuel 2015-11-11

Walter Roberson
Walter Roberson 2015-11-11
while true
xs = input('enter your guess (a list of three numbers)', 's');
xs = regexprep(xs, '^\[(.*)\]', '$1');
s = regexp(xs, '(\s|,)+', 'split');
if length(s) ~= 3
warning('Wrong number of entries, need 3');
continue;
end
x = str2double(s);
if any(isnan(x))
warning('Something was not a number!');
continue;
end
break;
end

Thorsten
Thorsten 2015-11-11
编辑:Thorsten 2015-11-11
Use brackets when entering the input
>> x=input('your guess')
your guess[1 2 3]
x =
1 2 3

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by