how to Find the total surface area and volume of a mesh plot
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
siddharth rawat
il 16 Nov 2016
Commentato: Star Strider
il 4 Apr 2018
I have a 2D matrix (attached) containing the height information of a 3D object. I would like to know how to calculate the volume and total surface area of this mesh plot. considering each square pixel has a side length of 0.1 microns.
3 Commenti
Risposta accettata
Star Strider
il 16 Nov 2016
I’ve not done surface or volume integrals in a while, so I went back to Thomas and Finney.
See if this does what you want:
D = load('siddharth rawat h1.mat');
h1 = D.h1;
Vol = trapz(trapz(h1));
DxDy = gradient(h1);
Surface = trapz(trapz(sqrt(DxDy.^2 + DxDy'.^2 + 1)));
Vol =
6668.8
Surface =
11368
7 Commenti
Più risposte (1)
KSSV
il 16 Nov 2016
Check this link, you have to follow like this.
2 Commenti
murk hassan memon
il 4 Apr 2018
Modificato: murk hassan memon
il 4 Apr 2018
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/188948/image.jpeg)
i want to find out the Mean corpuscular volume (MCV). for mcv we must have volume of red blood cells so my question is how to calculate the volume of red blood cells for which i have also attached the image of normal red blood cell. any answer will highly be appreciated.
Star Strider
il 4 Apr 2018
Vedere anche
Categorie
Scopri di più su Biomedical Imaging in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!