how Draw a Tetrahedron in matlab
4 ビュー (過去 30 日間)
古いコメントを表示
- Item one
- Item twoplease how to draw a Tetrahedron in matlab ?
0 件のコメント
回答 (1 件)
Star Strider
2015 年 10 月 26 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Object Containers についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!