Need help inputing words

2 visualizaciones (últimos 30 días)
Samy Ben Thabet
Samy Ben Thabet el 9 de Oct. de 2018
Comentada: Image Analyst el 9 de Oct. de 2018
I want to ask my user to input a shape:
h=input('What shape do you want?:');
if h==square;
disp(h)
But this never works, Matlab shows me the following error message: "'square' requires Signal Processing Toolbox."
Can someone help me find a way to make this work please :)

Respuesta aceptada

Star Strider
Star Strider el 9 de Oct. de 2018
You need to add the 's' to the input argument list, and then use strcmp for the comparison.
Try this:
h=input('What shape do you want?:', 's');
if strcmp(h, 'square')
sprintf('SQUARE!')
end
  1 comentario
Image Analyst
Image Analyst el 9 de Oct. de 2018
If you can't use contains() like in my answer because your version of MATLAB is too old, then you can make this more robust by using strcmpi() instead of strcmp() and use strtrim() in case the user put any leading or trailing spaces on their response:
h = input('What shape do you want? ', 's');
if strcmpi(strtrim(h), 'square')
fprintf('SQUARE!\n')
end

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 9 de Oct. de 2018
Try using contains():
clc;
userResponse = input('What shape do you want? ', 's')
if contains(userResponse, 'square', 'IgnoreCase', true)
uiwait(helpdlg('You want a square.'));
else
message = sprintf('%s is an unrecognized response.\nTry again.', userResponse);
uiwait(warndlg(message));
end

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by