필터 지우기
필터 지우기

how to plot x-axis only

조회 수: 31 (최근 30일)
zilai si
zilai si 2019년 5월 27일
답변: Star Strider 2019년 5월 27일
hello, everyone, i wonder how to plot a gragh like this:
QQ图片20190527221922.png
with x-aixs only and two directions

채택된 답변

Star Strider
Star Strider 2019년 5월 27일
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.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Specifying Target for Graphics Output에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by