Borrar filtros
Borrar filtros

how to plot the log scale for the following values ?

1 visualización (últimos 30 días)
Harshil Patel
Harshil Patel el 21 de Ag. de 2018
Respondida: Dimitris Kalogiros el 21 de Ag. de 2018
x = [2.51 ;2.55; 2.56]; y = 10:10:30; semilogy(x,y,'bo-');
Not getting the log scale on Y axis.
  2 comentarios
jonas
jonas el 21 de Ag. de 2018
@Shannon: Write an answer instead of a comment! You get some credits and the question is flagged accordingly.
Shannon Cherry
Shannon Cherry el 21 de Ag. de 2018
Thanks, I'm new to this and this was my first answer.

Iniciar sesión para comentar.

Respuestas (2)

Shannon Cherry
Shannon Cherry el 21 de Ag. de 2018
Use loglog instead of semilogy. Type 'doc loglog' for explanation.

Dimitris Kalogiros
Dimitris Kalogiros el 21 de Ag. de 2018
clear; close all; clc;
x = [2.51 ;2.55; 2.56];
y = 10:10:30;
loglog(x,y,'bo-');
grid on; zoom on;

Categorías

Más información sobre Graphics Object Programming en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by