Help with error command and user input
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Below I have a simple user input asking for an angle. I am currently displaying an error if the user does not pick a valid angle, they will then have to rerun the code in order to try again. I am trying to have a while loop that doesn't continue on until the statement is true but I am having trouble with my arguments. I originally tried,
A = input('Pick an angle 15, 30, 45 or 60 degreees. Angle = ');
while A ~= [15 30 45 60]
A = input('Pick an angle 15, 30, 45 or 60 degreees. Angle = ');
if A ~= [15 30 45 60]
error('angle must be 15, 30, 45, or 60 degrees');
end
end
but this brings a problem because the if statement is never reached. Currently i have
A = input('Pick an angle 15, 30, 45, or 60 angle = ');
if A ~= ([15 30 45 60])
error('angle must be 15, 30, 45, or 60 degrees ');
end
any help is appreciated.
3 comentarios
Respuestas (1)
Sriram Tadavarty
el 18 de Abr. de 2020
Hi Stieve,
You can try running the infinite loop, till the input provided is one of the valid values.
Once, you place the error in the code, the execution stops. Indeed you can place the message with the disp command.
Here is the way the code can be placed.
A = input('Pick an angle 15, 30, 45 or 60 degreees. Angle = ');
while (1)
if any(A == [15 30 45 60])
break;
else
disp('angle must be 15, 30, 45, 0r 60 degrees') % This is to indicate what the valid values are
A = input('Pick an angle 15, 30, 45 or 60 degreees. Angle = ');
end
end
Hope this helps.
Regards,
Sriram
2 comentarios
Sriram Tadavarty
el 18 de Abr. de 2020
If you use error command, then they have to restart the code. You can use warning or disp as suggested.
error will stop the execution once it reaches it.
Hope this helps.
Regards,
Sriram
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!