Filter löschen
Filter löschen

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

1 Ansicht (letzte 30 Tage)
Andrew Padilla
Andrew Padilla am 2 Nov. 2018
Bearbeitet: madhan ravi am 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

Antworten (1)

madhan ravi
madhan ravi am 2 Nov. 2018
Bearbeitet: madhan ravi am 2 Nov. 2018
Just change values to values(count)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by