필터 지우기
필터 지우기

creating a rectangle plot

조회 수: 7 (최근 30일)
PA
PA 2022년 7월 25일
댓글: Walter Roberson 2022년 7월 29일
How can i create this rectangle in matlab?

답변 (3개)

Chunru
Chunru 2022년 7월 25일
p = [0 2 2 3 3 5 5 0 0;
0 0 1 1 0 0 4 4 0];
plot(p(1,:), p(2,:))
  댓글 수: 6
PA
PA 2022년 7월 26일
Thanks, And is there any other method for this to be plot
Chunru
Chunru 2022년 7월 26일
You can work out the coordinates (use nan to break up the line).
p = [0 4 nan 6 7 7 0 0 nan 4 6 6 4 4;
0 0 nan 0 0 5 5 0 nan -1 -1 1 1 -1];
plot(p(1,:), p(2,:)); axis off

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


PA
PA 2022년 7월 29일
편집: PA 2022년 7월 29일
I need to find the value of Xa,Ya, Xb ,Yband can anyone help me with the algorithm
  댓글 수: 4
PA
PA 2022년 7월 29일
Xa and Ya are the points of the line from the frontside and xb and Yb are he points of the line on the rear side. i need to derive the formula for Xa ,Ya, Xb, Yb
Walter Roberson
Walter Roberson 2022년 7월 29일
please post a sample image that does not have the annotations

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


PA
PA 2022년 7월 29일
its a fin which have cordintate Xa,Ya and Xb,Yb
i have to find the formula for the Xa and Ya.
the fins with bold is displayed on the case and the dashed lines are the hidden fins inside the case
  댓글 수: 1
Walter Roberson
Walter Roberson 2022년 7월 29일
Please post an actual image, not a diagram

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

카테고리

Help CenterFile Exchange에서 Visual Exploration에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by