How do I ensure the user inputs a minimum x value that's actually smaller than the maximum x value?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Alexis Williams
el 18 de Abr. de 2021
Comentada: Alexis Williams
el 18 de Abr. de 2021
I am trying to get the user's minimum and maximum x values for the quadratic equation, but I don't know how to code to make sure that the minimum value doesn't equal or exceed the maximum value. Please help.
% Plotting a User-Entered Quadratic Function %
user_input = input(['Enter a, b, and c values for the quadratic equation',...
'\nax^2 + bx + c = 0. Input all three values in this form [a b c].',...
'\nInput values (including brackets): ']);
user_input1 = input(['Enter the minimum and maximum values of x in',...
'\nthe form [a b]: ']);
0 comentarios
Respuesta aceptada
David Fletcher
el 18 de Abr. de 2021
isError = 1;
while isError
user_input1 = input(['Enter the minimum and maximum values of x in',...
'\nthe form [a b]: ']);
isError = ~(user_input1(1)<user_input1(2));
end
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!