create point betweem two points
조회 수: 15 (최근 30일)
이전 댓글 표시
Hi every one
I have two points, for example
(2,5)-(10,15)... how can I create a new point between them???
thanks a loot
majid
댓글 수: 0
채택된 답변
Walter Roberson
2012년 7월 15일
NumberNewPoints = 3;
xvals = linspace(2, 10, NumberNewPoints+2);
yvals = linspace(5, 15, NumberNewPoints+2);
pts = [xvals(:), yvals(:)];
Now the points are the rows.
댓글 수: 11
Walter Roberson
2012년 7월 16일
편집: Walter Roberson
2018년 1월 28일
pts(1,:) %x,y for starting point
pts(2,:) %x,y for intermediate point
pts(3,:) %x,y for final point
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Polygons에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!