Plotting 3D
1 回表示 (過去 30 日間)
古いコメントを表示
>> Cordinate(1,:)=[2 1 0];
Cordinate(2,:)=[0 1 1];
Cordinate(3,:)=[1 1 -2];
Cordinate(4,:)=[1 0 -2];
Cordinate(5,:)=[1 1 1];
Cordinate(6,:)=[0 0 1];
>> Cordinate
Cordinate =
2 1 0
0 1 1
1 1 -2
1 0 -2
1 1 1
0 0 1
I want to locate points at the "Cordinate" given above in 3D. How to do that in Matlab?
I want to show a star mark of the point located in x y z
0 件のコメント
回答 (2 件)
Friedrich
2011 年 8 月 10 日
Hi,
try plot3:
plot3(Cordinate(:,1),Cordinate(:,2),Cordinate(:,3),'*')
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!