Suppose that I want to update a plot with a new data. What method should I choose?
- Set the
XDataSourceproperty to some name, update the variable, and callrefreshdata - Erase the original
plot, and callplotcommand again. - Use
Set('Xdata',...')
|
Suppose that I want to update a plot with a new data. What method should I choose?
|
|||
|
|
|
Short answer : always use Example code:
Long answer: There are three relevant measures by which one should choose the best method.
Now, let's analyze the possible methods. Method(1) - refreshdata
M-lint immediately issues a warning in the line
Why does it happen? Now let's discuss speed/runtime. By taking a look at
Imagine that you have not one plot, but 100 plot and you want to update only the first. This will be very slow, because for each of the plots, you attempt to find the one you need! (I am leaving as an exercise for the reader to figure out what is Even if you give the relevant plot as an argument, you still have the second loop, that runs Conclusion : Hard to understand, hard to refactor, slow runtime Method (2) - Delete and re-plot
This method is quite clear for the reader. You deleted the plot, and drew a new one. However, as we will see from the time comparison in the end, that is the slowest method. Conclusion : Easy to understand, easy to refactor, very slow runtime Method(3) - set('XData',...,'YData') The code is really clear. You want to modify a two properties of your plot,
Conclusion : Easy to understand, easy to refactor, fast runtime Here is the time comparison code
And the results:
|
|||||||||
|
If you have more than one line object in the given axes then Method:
will generate an error in MATLAB R2012b. An appropriate example is provided in Andrey's answer. A bug has been submitted to the Mathworks. |
|||
|
|