Borrar filtros
Borrar filtros

How can I set zlabel log scale on 3d plot

4 visualizaciones (últimos 30 días)
수연
수연 el 6 de Mzo. de 2024
Respondida: Chunru el 6 de Mzo. de 2024
set(gca,'xscale','log');
set(gca,'yscale','log');
set(gca,'zscale','log')
When I use the code, xlabel doesn't change with log scale.
I've used loglog, semilog but it doesn't work.
  1 comentario
VBBV
VBBV el 6 de Mzo. de 2024
use the command
grid on
after plotting 3D function. Sometimes it is not visible clearly
I've used loglog, semilog but it doesn't work.
These are meant for 2D plots only

Iniciar sesión para comentar.

Respuestas (1)

Chunru
Chunru el 6 de Mzo. de 2024
[X,Y,Z] = peaks(50);
X = X - min(X(:)) + 1; % make it +ve for log
Y = Y - min(Y(:)) + 1;
Z = Z - min(Z(:)) + 1;
surf(X, Y, Z)
set(gca,'xscale','log');
set(gca,'yscale','log');
set(gca,'zscale','log')

Categorías

Más información sobre Log 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!

Translated by