Effacer les filtres
Effacer les filtres

How to compute magnitude of volume

6 vues (au cours des 30 derniers jours)
Anshul Jain
Anshul Jain le 14 Fév 2021
Commenté : Anshul Jain le 16 Fév 2021
Dear sir,
I have 216 values of P, Q and R all in mm. I got the 3D plot for it. However, I want to calculate exact magnitude of volume in mm^3.
Kindly let me know sir how to get it.
Programming I have used to obtain 3D plot is shown below and values of P, Q and R are attached in excel file.
Thanks in advance
T = readtable('Book1.xlsx', 'Sheet',1, 'Range','F1:H217');
T = table2array(T);
P=T(:,1);
Q=T(:,2);
R=T(:,3);
plot3(P,Q,R,'.');
kkk=boundary(P,Q,R);
trisurf(kkk,P,Q,R,'Facecolor','r');
xlabel('P(mm)');
ylabel('Q(mm)');
zlabel('R(mm)');

Réponses (1)

Walter Roberson
Walter Roberson le 14 Fév 2021
Modifié(e) : Walter Roberson le 14 Fév 2021
[kkk, vol] = boundary(P,Q,R);
gives the volume inside the boundary.
The volume calculation does count on the axes all being to the same scale, that one unit in one axes is the same as one unit in another axes.
  1 commentaire
Anshul Jain
Anshul Jain le 16 Fév 2021
Thank you sir!!!!

Connectez-vous pour commenter.

Catégories

En savoir plus sur 3-D Volumetric Image Processing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by