use Plot instead of rectangle
조회 수: 2 (최근 30일)
이전 댓글 표시
How can i use plots instead of rectangle function for plotting?
댓글 수: 0
답변 (1개)
DGM
2022년 10월 31일
편집: DGM
2022년 10월 31일
Given the same position vector that would be used for rectangle():
% the position parameter used by rectangle()
pos = [0 0 20 10]; % [x y w h]
% rearrange to create a point list
x = pos(1) + pos(3)*[0 1 1 0 0];
y = pos(2) + pos(4)*[0 0 1 1 0];
% plot it
plot(x,y)
If you intend to replicate other functionality of rectangle(), that will be more complicated.
댓글 수: 1
DGM
2022년 10월 31일
You have some offset in your position data. That's not something I can know from this information. Look at whatever calculations you're using to caclulate the center positions of the holes. Work backwards from there.
참고 항목
카테고리
Help Center 및 File Exchange에서 Axis Labels에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!