Borrar filtros
Borrar filtros

how to make log axis scale

1 visualización (últimos 30 días)
Khaled aL Qattawi
Khaled aL Qattawi el 8 de Jul. de 2022
Comentada: Khaled aL Qattawi el 8 de Jul. de 2022
the code has loading files, all i want make the y axis as log scale. please see the attached plot, please help.
clear all;
load 'X_theta.txt';
X=X_theta;
load 'Y_POE.txt';
Y=Y_POE;
plot(X,Y);
title('Correction Factor And Probability of Exceedance');
xlabel('Correction Factor Θz');
ylabel('Probability of Exceedance PoE');

Respuesta aceptada

Abderrahim. B
Abderrahim. B el 8 de Jul. de 2022
Hi!
Try to use semilogy(X,Y) instead of plot.
clear all;
load 'X_theta.txt';
X=X_theta;
load 'Y_POE.txt';
Y=Y_POE;
semilogy(X,Y);
title('Correction Factor And Probability of Exceedance');
xlabel('Correction Factor Θz');
ylabel('Probability of Exceedance PoE');
  1 comentario
Khaled aL Qattawi
Khaled aL Qattawi el 8 de Jul. de 2022
hi, yes it works now, i will modify more, thanks

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by