フィルターのクリア

How to obtain empty 3d plot

32 ビュー (過去 30 日間)
kavinda hw
kavinda hw 2017 年 9 月 3 日
コメント済み: kavinda hw 2017 年 9 月 4 日
I am trying to plot empty 3d plot with axis -20:5:20 and plot relevant data later. how can I plot such a 3D plot. please help

採用された回答

Walter Roberson
Walter Roberson 2017 年 9 月 4 日
ax = axes();
xlim(ax, [-20 20]);
ylim(ax, [-20 20]);
zlim(ax, [-20 20]);
view(ax, 3)
hold(ax, 'on')
  1 件のコメント
kavinda hw
kavinda hw 2017 年 9 月 4 日
Thank you for response

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by