I have a simple plot which feature a lot of data points, when i have have graph. Is there a way that i can simple click on all these point and allow matlab to give me a average value of them?
Thank you
|
|
The easiest way if you don't want to do it programmatically would be to use the data brush and statistics. I used
To get the mean of a specific set of data, select the data you want, then in the menu go to Tools > Brushing > Create New Variable . . .. This creates a variable containing the boxed data. To get the mean do |
||||
|
Another option is to use data brush. Click brush icon on the figure toolbar and make a selection. Then select in menu Tools-Brushing-Create new variable. You can leave default variable name |
||||
|
Not very clear average of what values you wanted to calculate. I assume, it's y-coordinates. I would use RBBOX function to select set of points on the plot. Try this code:
I have to claim large portion of this code is from rbbox documentation. |
|||
|
|
|
I guess that you want to plot an average (or at least calculate it) from already plotted data. With plotAverage from the Matlab File Exchange, you can do it quite easily.
|
|||
|
|