How to align X and Y axis to middle of plot?

조회 수: 70 (최근 30일)
DESIREDDY SHASHIDHAR REDDY
DESIREDDY SHASHIDHAR REDDY 2023년 4월 28일
편집: DESIREDDY SHASHIDHAR REDDY 2023년 4월 28일
t = 0:5:360;
x = 10+cosd(t);
y = 10+sind(t);
plot(x,y);
How do I align the x and y axis to the centre of the plot similar to this attached image.

답변 (1개)

Cameron
Cameron 2023년 4월 28일
t = 0:5:360;
x = cosd(t);
y = sind(t);
p = plot(x,y);
p.Parent.XAxisLocation = "origin";
p.Parent.YAxisLocation ="origin";
  댓글 수: 1
DESIREDDY SHASHIDHAR REDDY
DESIREDDY SHASHIDHAR REDDY 2023년 4월 28일
what if data is not centred on 0,0
t = 0:5:360;
x = 10+cosd(t);
y = 10+sind(t);
plot(x,y);

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

카테고리

Help CenterFile Exchange에서 Filter Analysis에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by