How can I insert xyz label and title in 3D plotting

162 ビュー (過去 30 日間)
sermet
sermet 2014 年 2 月 2 日
編集済み: Mischa Kim 2014 年 2 月 2 日
x=[100,115,120,130]
y=[250,267,288,310]
z=[50,54,68,72]
point_id=[n1,n2,n3,n4]
scatter3(x, y, z, 'b*');
text(x, y, z, point_id);
%I wanna insert xyz axis and title for this figure 1 with codes.

採用された回答

Mischa Kim
Mischa Kim 2014 年 2 月 2 日
編集済み: Mischa Kim 2014 年 2 月 2 日
Use
title('My title')
xlabel('My x label')
and similarly for y and z axes.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by