How to add values at blue dots in graphs?

5 vues (au cours des 30 derniers jours)
Laur Haxhiu
Laur Haxhiu le 27 Nov 2020
Commenté : Laur Haxhiu le 27 Nov 2020

Réponses (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov le 27 Nov 2020
You mean sum up the plotted blue 'square' marker data points?
If so and you have only this plot as a data source, then you can use:
[x, y] = ginput(9); % hover your cursor carefully over the data points and click one after another for 9 times.
Sum_y = sum(y); % sum of y data points
Sum_x = sum(x); % sum of x data points

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by