Borrar filtros
Borrar filtros

How do I make such plot using axis command?

1 visualización (últimos 30 días)
Altin Guberi
Altin Guberi el 19 de Jun. de 2015
Comentada: Azzi Abdelmalek el 19 de Jun. de 2015
Hello . Okay so the x values are x=0:0.5:2 , while y=10:10:30 . Now I want to know if there is any way to make a plot using axis command which shows these on x axis 0 0.5000 1.0000 1.5000 2.0000 and these on y axis 10 20 30 . Thank you and have a nice day!!

Respuestas (1)

Azzi Abdelmalek
Azzi Abdelmalek el 19 de Jun. de 2015
Editada: Azzi Abdelmalek el 19 de Jun. de 2015
x=0:0.5:2 ,
y=10:10:30
plot(y)
h=gca
xt=get(h,'xtick')
set(h,'xtick',linspace(xt(1),xt(end),numel(x)))
set(h,'xticklabel',arrayfun(@num2str,x,'un',0))
  2 comentarios
Altin Guberi
Altin Guberi el 19 de Jun. de 2015
no , I want it the y axis to appear only 10 20 30 . Can you make this?
Azzi Abdelmalek
Azzi Abdelmalek el 19 de Jun. de 2015
Ok:
x=0:0.5:2 ,
y=10:10:30
plot(y)
h=gca
xt=get(h,'xtick')
set(h,'xtick',linspace(xt(1),xt(end),3))
x1=[10 20 30];
set(h,'xticklabel',arrayfun(@num2str,x1,'un',0))

Iniciar sesión para comentar.

Categorías

Más información sobre 2-D and 3-D Plots 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