Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

How do I create multiple x,y scatters on one plain, and show the "trajectory" of each point?

1 view (last 30 days)
Suppose I have the following multidimensional matrix, where rows are combinations of x and y values, and the third dimension holds different samples of such combinations:
[x,y,S]
Now I wish to create S scatter plots on the same plain, and I can of course use "hold on" to achieve this as I loop through the third dimension. However, I also wish to show the evolution or trajectory of each combination by joining combinations with a line, which I don't know how to do.
How is that done?

Answers (1)

Mukul Rao
Mukul Rao on 24 Apr 2017
Hello,
You could try using the animatedline command
Essentially, every time you would add data from the third dimension, you could update the line objects with new (x,y) values as explained in the documentation.
Of course, depending on your use case, you might want to avoid creating too many line objects in interest of saving memory.

This question is closed.

Tags

Community Treasure Hunt

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

Start Hunting!