How can I create 3D plots using logarithmic axes in MATLAB 7.6 (R2008a)?
24 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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.
Respuesta aceptada
MathWorks Support Team
el 27 de Jun. de 2009
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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Discrete Data Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!