Issue with 2D Planar Area Calculation Using surf
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello MATLAB community,
I would like to ask how to calculate the area of a colored region from a surf plot.
For example, in the figure I’m working with, I want to determine the concentration area where the value is greater than 0.2.
My current idea is to extract the outer boundary of that region and use polyarea to calculate the area.
However, the boundary function in MATLAB doesn't seem to work properly in this context.
Below is the code I’m currently working with.
Any help or suggestions would be greatly appreciated.
Thank you very much for your support!

1 comentario
KSSV
el 24 de Jul. de 2025
The range of your max_Layer1 data is [0 0.0040]. There are no values > 0.2.
Respuestas (1)
Matt J
el 24 de Jul. de 2025
Editada: Matt J
el 24 de Jul. de 2025
You may havee to regrid the data so that it is uniformly spaced and also scale the area calculation by the pixel area:
load max_Layer1.mat
BW=281000<=GX&GX<=293000&...
2780000<=GY&GY<=2790000&...
2e-4 <=max_Layer1&max_Layer1<=15*10^-4;
area=bwarea(BW),
imshow(BW',[])
0 comentarios
Ver también
Categorías
Más información sobre Contour Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!