Effacer les filtres
Effacer les filtres

How do I add a set of points to a vector only using a while loop?

1 vue (au cours des 30 derniers jours)
Andrew Padilla
Andrew Padilla le 2 Nov 2018
Modifié(e) : madhan ravi le 2 Nov 2018
I am trying to create a nx2 vector that adds a set of two points, [2,1], for example. I listed my attempt below. For some reason, with what I have now, when I set X to zero (when I select no), the variables "values" only stores the last set of numbers. If anyone could guide me in the right direction, I would appreciate it.
if the user choose to run the program 3 times for example and enters the points [1, 2], [2, 3], [3, 4] on each run, how do I get the vector to store them like this
1 2
2 3
3 4
my attempt:
Y = [];
count = 0;
x = 1;
while x == 1
count = count + 1;
A = input('Input a set of points: ');
values = [[Y];A];
x = menu('Would you like to enter another set of points?','Yes','No');
end

Réponses (1)

madhan ravi
madhan ravi le 2 Nov 2018
Modifié(e) : madhan ravi le 2 Nov 2018
Just change values to values(count)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by