hello, everyone, i wonder how to plot a gragh like this:
QQ图片20190527221922.png
with x-aixs only and two directions

 Respuesta aceptada

Star Strider
Star Strider el 27 de Mayo de 2019

0 votos

This comes close:
figure
xlim([-4.2 4.2])
plot((rand(1,20)-0.5)*3, zeros(1,20), '+r')
text(min(xlim), 0.025, '\leftarrow', 'HorizontalAlignment','left', 'VerticalAlignment','middle', 'FontSize',18)
text(max(xlim), 0.025, '\rightarrow', 'HorizontalAlignment','right', 'VerticalAlignment','middle', 'FontSize',18)
set(gca, 'XAxisLocation','origin', 'YColor','none')
Experiment to get the result you want.

Más respuestas (0)

Categorías

Más información sobre Creating, Deleting, and Querying Graphics Objects en Centro de ayuda y File Exchange.

Productos

Etiquetas

Preguntada:

el 27 de Mayo de 2019

Respondida:

el 27 de Mayo de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by