Borrar filtros
Borrar filtros

scatter plot with non-linear axis

1 visualización (últimos 30 días)
Birgit
Birgit el 17 de Nov. de 2012
Hi together!
I have been trying for a while now to make a certain graph, but just do not succeed :-(
Here is what I need:
A scatter plot, where the y axis is linear scaled: y = [0.7, 0.9] and the x-axis is non-linear scaled: x = [1/128, 1/64, 1/32, 1/16, 1/8, 1/4, 1/2, 1, 2]
Could anybody PLEASE help me??

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 17 de Nov. de 2012
x=1:10
y=sin(x)
x1=1./2.^(-1:length(x)-2),
scatter(x1,y)
  6 comentarios
Walter Roberson
Walter Roberson el 17 de Nov. de 2012
set(gca, 'XScale', 'log')
This will give you log 10, but log 2 is a linear multiple of log 10.
Birgit
Birgit el 17 de Nov. de 2012
thanks to both of you! :-) it's great to get help here!

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by