How to draw a random point on a specific line within a specific boundary.

조회 수: 2 (최근 30일)
SUSHMA MB
SUSHMA MB 2016년 8월 3일
편집: Melanie Schmocker 2016년 8월 3일
Let the
XY_BOUNDARY = [0,70,0,50};
position = [XY_BOUNDARY(2) - XY_BOUNDARY(1); XY_BOUNDARY(4) - XY_BOUNDARY(3)] .* rand(2,1) ...
+ [XY_BOUNDARY(1);XY_BOUNDARY(3)];
In the above code i get a random number within the specified boundary. Now i want the random point position in a specified boundary as well as on the line connecting two points (x1,y1), and (x2,y2, which are also present within the defined boundary...Please tell me how to do this
  댓글 수: 1
Melanie Schmocker
Melanie Schmocker 2016년 8월 3일
편집: Melanie Schmocker 2016년 8월 3일
Are (x1,y1) and (x2,y2) already stored in your code and you want to find a point on the line between them? Or do you want to generate them randomly from within the boundary and then select a random point on the line between them?
If they're already stored in your code, are they guaranteed to be within the boundary?

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Random Number Generation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by