how Draw a Tetrahedron in matlab
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
- Item one
- Item twoplease how to draw a Tetrahedron in matlab ?
0 comentarios
Respuestas (1)
Star Strider
el 26 de Oct. de 2015
Item one is easy: ... !
Item two: This is one possibility:
X = [1 0 1; 0 0 0; 0 0 0]*1.5;
Y = [0 0 0; 1 0 1; 0 0 0]*1.5;
Z = [0 1 0; 0 0 0; 1 0 1]*1.5;
figure(1)
surf(X, Y, Z)
axis equal
axis([-1 2 -1 2 -1 2])
2 comentarios
Ver también
Categorías
Más información sobre Object Containers en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!