How can I create 3D plots using logarithmic axes in MATLAB 7.6 (R2008a)?

23 ビュー (過去 30 日間)
I know the MATLAB functions SEMILOGX, SEMILOGY and LOGLOG for creating 2D plots with logarithmic axes.
Now I want to create logarithmic 3D plots, however I can not find an appropriate plot function in MATLAB.

採用された回答

MathWorks Support Team
MathWorks Support Team 2009 年 6 月 27 日
You can set axis scaling to linear or logarithmic using the XScale property (respectively: YScale, ZScale):
surf(peaks);
set(gca,'XScale','log')
For further details about Axes Properties refer to the installed documentation:
docsearch('axes properties')

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2008a

Community Treasure Hunt

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

Start Hunting!

Translated by