repeat function and calculation

here is my code
x=('input x')
y=x^+2
how do I ask once I get my output if I want the calculation to be repeated again

2 comentarios

Ameer Hamza
Ameer Hamza el 8 de Mzo. de 2020
Which calculation do you want to repeat?
matt noman
matt noman el 8 de Mzo. de 2020
what I want is that after I enter an x and the first calculation happens I want to make a menu of yes and no that asks if I would like to repeat the program if I say no I want the program to end but if I say yes I want to input another value into x and repeat that calculaton again

Iniciar sesión para comentar.

Respuestas (1)

Ameer Hamza
Ameer Hamza el 8 de Mzo. de 2020
This is a general structure of what you are trying to do
condition = true;
while condition
x = input('Enter a number: ');
y = x.^2;
disp(y);
condition = input("Do you want to continue? (yes/no)\n", 's') == "yes";
end

Categorías

Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 8 de Mzo. de 2020

Respondida:

el 8 de Mzo. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by