lineEllipse

버전 1.0.0 (1.61 KB) 작성자: KSSV
Get points of intersection of line and ellipse/ circle
다운로드 수: 137
업데이트 날짜: 2018/8/24

라이선스 보기

This function gives points of intersection of line and ellipse. Given major axis (a), minor axos (b),
center (O(h,k)) of ellipse and two points (A(x1,y1), B(x2,y2)) lying on the stright line. This function gives two points
of intersection C1 and C2. If the line and ellipse doesn't intersect, intersections points return NaN's.


a = randperm(10,1); % some random major axis
b = randperm(10,1) ; % some random minor axis
% if a = b, we get circle
O = rand(2,1) ; % random center of ellipse

A = rand(1,2) ; B = rand(1,2) ; % Two random points for stright line

[C1,C2] = lineEllipse(a,b,O,A,B) ; % GEt intersection poins

%% plot
th = linspace(0,2*pi) ;
x = O(1)+a*cos(th) ;
y = O(2)+b*sin(th) ;

figure
plot(x,y)
hold on
plot(A(1),A(2),'.r')
plot(B(1),B(2),'.r')

plot(C1(1),C1(2),'*k')
plot(C2(1),C2(2),'*k')

L = [A ; B ; C1 ; C2] ;
plot(L(:,1),L(:,2),'g')
axis equal

인용 양식

KSSV (2024). lineEllipse (https://www.mathworks.com/matlabcentral/fileexchange/68619-lineellipse), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2018a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 3-D Scene Control에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0