How can i modify my capture?

조회 수: 2 (최근 30일)
Philipp Mueller
Philipp Mueller 2017년 1월 2일
편집: Philipp Mueller 2017년 1월 3일
Hi,
I want to capture my curve. It works so far but i want that my arrow has a 45 degree angle like in the screenshot below. Thank you.
x1=[0 50 75 100]
y1=[100 75 50 25]
[xb,yb] = stairs(x1,y1);
axis([0 200 0 200])
xlim([0 150])
plot(yb,xb)
text(50,75,'\leftarrow Formular XY')
datacursormode on

채택된 답변

Image Analyst
Image Analyst 2017년 1월 2일
Try using annotation():
x1=[0 50 75 100]
y1=[100 75 50 25]
[xb,yb] = stairs(x1,y1);
axis([0 200 0 200])
xlim([0 150])
plot(yb,xb)
x = [.50, .45];
y = [.79, .74];
annotation('textarrow',x,y,'String','Formular XY')
  댓글 수: 2
Philipp Mueller
Philipp Mueller 2017년 1월 3일
thank you
Philipp Mueller
Philipp Mueller 2017년 1월 3일
편집: Philipp Mueller 2017년 1월 3일
What does it
x = [.50, .45];
y = [.79, .74];
exactly means? Are this coordinates?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by