필터 지우기
필터 지우기

How to draw the dynamic diagram of the required moving point trajectory?

조회 수: 4 (최근 30일)
浩思
浩思 2022년 12월 18일
편집: 浩思 2022년 12월 29일
It is known that circle M: (x+1) ^ 2+y ^ 2=1, circle N: (x-1) ^ 2+y ^ 2=25, dynamic circle P is circumscribed by circle M and inscribed by circle N, and the locus of circle center P is curve C. It is required to draw two fixed circles M and N, and show the track of the center P in the form of a dynamic graph, that is, show the track of P as an ellipse in the form of a moving point P.

답변 (1개)

浩思
浩思 2022년 12월 29일
편집: 浩思 2022년 12월 29일
I completed the first small step of the goal myself.
Use the following code to draw a circle (the first circle given in the title)
The second step is how to draw two circles into the same coordinate system?
syms x y r
x = -1 ;
y = 0;
r = 1;
rectangle('Position',[x-r,y-r,2*r,2*r],'Curvature',[1,1],'EdgeColor','m')

카테고리

Help CenterFile Exchange에서 Formula Manipulation and Simplification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by