3D human body for temperature analysis
Afficher commentaires plus anciens
Can any brother show the procedure to make a 3D human simple body (cylindrical) for temprature analysis by using GUI or SMNEW.
Please refer to attachment. I shall be much obliged to him/her.

Réponses (1)
darova
le 30 Mai 2019
A lot of work has to be done
clc,clear
[x, y, z] = cylinder;
surf(5*x,5*y,20*z*(1-0.5)) % main body
hold on
surf( z*7+2,x,y+11) % left bar
surf(-z*7-2,x,y+11) % right bar
surf(x+8,y,z*7+3) % left hand
surf(x-8,y,z*7+3) % right hand
surf(2*x,2*y,3*z+10) % neck
[x1,y1,z1] = sphere;
surf(2.5*x1,2.5*y1,2.5*z1+13) % head
hold off
xlabel('X')
ylabel('Y')
3 commentaires
Muhammad Waqar Talib
le 1 Juin 2019
darova
le 1 Juin 2019
yes, but i dont know if i can trust you
Muhammad Waqar Talib
le 4 Juin 2019
Catégories
En savoir plus sur Discrete Data Plots 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!