3D human body for temperature analysis
Show older comments
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.

Answers (1)
darova
on 30 May 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 Comments
Muhammad Waqar Talib
on 1 Jun 2019
darova
on 1 Jun 2019
yes, but i dont know if i can trust you
Muhammad Waqar Talib
on 4 Jun 2019
Categories
Find more on Discrete Data Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!