Clear Filters
Clear Filters

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

1 view (last 30 days)
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

Answers (1)

madhan ravi
madhan ravi on 2 Nov 2018
Edited: madhan ravi on 2 Nov 2018
Just change values to values(count)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!