필터 지우기
필터 지우기

Plot points with minimal distance

조회 수: 2 (최근 30일)
Richard Hojstric
Richard Hojstric 2019년 10월 1일
답변: Shadaab Siddiqie 2020년 8월 26일
Hello friends, please a i need i make 1000x1000 place and plot three points with color on this place. But distance between points must be minimal 400metres.
Thank you :)
  댓글 수: 4
Richard Hojstric
Richard Hojstric 2019년 10월 1일
So, i need to do :
In Matlab, render an area of ​​1000 x 1000metres. In this area plot 3 points random (i think), with some color. Distance between this poitns should be minimum 400m.
And of the end display its x and y coordinates to each point.
I think it a simple but i have matlab last year :D
Something like on picture but i need it 1000x1000 area and with distance :)
test.png
Thanks.
Richard Hojstric
Richard Hojstric 2019년 10월 1일
But this three points can be set permanently not random :) its easier. But how set distance ?

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

답변 (1개)

Shadaab Siddiqie
Shadaab Siddiqie 2020년 8월 26일
From my understanding you want to plot 3 random points, each at a distance of at least 400units form other 2 points, in a plot of 1000x1000 units. You could select first point randomly. Then for second point you can keep selecting a point randomly until the condition satisfies. Similarly, do it for the third point.
% randomly choose point1
point1 = [randi(1000),randi(1000)];
% choose point2 such that distance between point1 and point2 is greater than 400
point2 = [randi(1000),randi(1000)];
while pdist([point1;point2],"euclidean")<=400
point2 = [randi(1000),randi(1000)];
end
% choose point3 such that distance between point3 and point1 is greater than 400 and
% distance between point3 and point2 is greater than 400
point3 = [randi(1000),randi(1000)];
while pdist([point1;point3],"euclidean")<=400 || pdist([point2;point3],"euclidean")<=400
point3 = [randi(1000),randi(1000)];
end
%plot the points
hold on
plot([point1(1) point2(1) point3(1)],[point1(2) point2(2) point3(2)],'.b',"Marker","o");
xlim([0 1000])
ylim([0 1000])
Hope this helps.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by