Save while loop data?

19 次查看(过去 30 天)
If I have a while loop that records certain data points, I know how to fprintf in each time the loop goes around, but how can I save these to a matrix without the values getting replaced each time? The loop records the (x,y) coordinates of the cursor every time I click the mouse, and I want to export this into a matrix with all the x values and with all the y values if possible.
Thank you!

采纳的回答

Mohammad Abouali
Mohammad Abouali 2015-10-23
编辑:Mohammad Abouali 2015-10-23
You can do it like this:
% first initialize myCoordList to an empty matrix
myCoordList=[];
while (some condition)
% some code that get's your x and y code
myCoordList=[myCoordList; [x, y]];
end
This way as you get more x and y pairs another row is added to myCoordList.
instead of using
myCoordList=[myCoordList; [x, y]];
you can also use:
myCoordList(end+1,:)=[x, y];
(Just use one of them not both)
  8 个评论
Cholisina
Cholisina 2023-3-8
I really happy to found this, thanks a lot
Mouli
Mouli 2023-6-12
I have no words, how to thank you. God bless you. I was trying my code for hours and value was getting reset everytime. Thanks a lot.

请先登录,再进行评论。

更多回答(1 个)

shipakane ndhlovu
shipakane ndhlovu 2022-11-29

Can someone please explain to me, what is really happening I see the coding working with just using that but what does it mean

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by