3D human body for temperature analysis
Ältere Kommentare anzeigen
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.

Antworten (1)
darova
am 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 Kommentare
Muhammad Waqar Talib
am 1 Jun. 2019
darova
am 1 Jun. 2019
yes, but i dont know if i can trust you
Muhammad Waqar Talib
am 4 Jun. 2019
Kategorien
Mehr zu Discrete Data Plots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!