How to trim lines in plot?

조회 수: 8 (최근 30일)
Lisa Smith
Lisa Smith 2018년 3월 14일
댓글: Lisa Smith 2018년 3월 16일
Hello, I'm trying to plot several lines in a circle and need to trim the part of lines which are out of this circle. So how can I do that? Thank you in advance
% plotting random lines
X1 = rand (8,8);
Y1 = rand (8,8);
figure
plot (X1,Y1)
hold on
% plotting the circle
R = 0.5;
angle = linspace(0,2*pi,180);
x= R*cos(angle);
y= R*sin(angle);
plot(x,y,'r')
axis equal
  댓글 수: 6
Walter Roberson
Walter Roberson 2018년 3월 15일
https://www.mathworks.com/matlabcentral/fileexchange/22441-curve-intersections
https://www.mathworks.com/matlabcentral/fileexchange/11837-fast-and-robust-curve-intersections
https://www.mathworks.com/matlabcentral/fileexchange/8908-curve-intersect-2
Lisa Smith
Lisa Smith 2018년 3월 15일
Thank you Walter, still even if I get the intersection points how to draw it, because they are totally randomly generated lines.

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

채택된 답변

Walter Roberson
Walter Roberson 2018년 3월 15일
Not necessarily the best way, but a way that would work:
Take the coordinates of the random points, and subtract from them the coordinates of the center of the circle. Convert the result to polar coordinates. Now create a logical mask of the points that have r less than the radius of the circle.
Now you want to look at the boundaries between groups of points that are inside or not. Look for every transition between false (outside) and true (inside), and every transition between true (inside) and false (outside)
first_outside_in_group = [false, mask(1:end) & ~mask(2:end-1)];
last_outside_in_group = [mask(2:end) & ~mask(1:end-1), false];
keep = mask | first_outside_in_group | last_outside_in_group;
adjusted_theta = theta;
adjusted_r = r;
adjusted_r(first_outside_in_group) = R_circle;
adjusted_r(last_outside_in_group) = R_circle;
adjusted_theta(~keep) = nan;
adjusted_r(~keep) = nan;
[adjusted_x, adjusted_y] = pol2cart(adjusted_theta, adjusted_r);
adjusted_x = adjusted_x + circle_center_x;
adjusted_y = adjusted_y + circle_center_y;
and now you can plot(adjusted_x, adjusted_y)
  댓글 수: 1
Lisa Smith
Lisa Smith 2018년 3월 16일
Thank you it works.

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by