Peak detection in a Filled area 2-D plot
Afficher commentaires plus anciens
Hello,
i've been working on "Filled area 2-D plot",
I have this image(that i attached) ....how can i detect maximum value of Y?
as you see in this image Y is 11.
Thanks a lot.

3 commentaires
darova
le 5 Juil 2020
Can you attach the data?
masha ghasemi
le 5 Juil 2020
Image Analyst
le 5 Juil 2020
Give us data and code to reproduce that plot.
Réponses (1)
Sumeet Singh
le 5 Juil 2020
1 vote
3 commentaires
masha ghasemi
le 5 Juil 2020
Sumeet Singh
le 5 Juil 2020
If data is available to you then you may try this code.
[max_col, rows] = max(data)
[peak, col_idx] = max(max_col) %peak -> peak value in data, col_idx -> column index of peak value
row_idx = rows(col_idx) %col_idx -> row index of peak value
Stacked value can be calculated by summing up the row containing peak value
masha ghasemi
le 5 Juil 2020
Catégories
En savoir plus sur Descriptive Statistics dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!