最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

趣味數(shù)學(xué):圓上的兩個(gè)點(diǎn)

2023-06-09 15:18 作者:金華流年  | 我要投稿

% matlab腳本

% GPT畫的


% Define circle

r = 1; % radius

theta = 0:0.01:2*pi; % angle range

x = r*cos(theta);

y = r*sin(theta);

% Initialize figure

figure

h_circle = plot(x, y, 'k');

hold on

h_blue = plot(r, 0, 'bo','MarkerFaceColor', 'b');

h_yellow = plot(r, 0, 'yo','MarkerFaceColor', 'y');

% Set axis

axis equal

axis([-3*r-0.5, 3*r+0.5, -3*r-0.5, 3*r+0.5])

xlabel('X')

ylabel('Y')

% Move points and draw lines

blue_angle = 0;

yellow_angle = 0;

for k = 1:1800

% Update angles

blue_angle = blue_angle - 2*pi/60;

yellow_angle = yellow_angle + 2*pi/120;

% Calculate positions

blue_x = r*cos(blue_angle);

blue_y = r*sin(blue_angle);

yellow_x = r*cos(yellow_angle);

yellow_y = r*sin(yellow_angle);

% Update points

set(h_blue, 'XData', blue_x, 'YData', blue_y);

set(h_yellow, 'XData', yellow_x, 'YData', yellow_y);

% Calculate direction vector

dx = yellow_x - blue_x;

dy = yellow_y - blue_y;

% Normalize direction vector

mag = sqrt(dx^2 + dy^2);

dx = dx / mag;

dy = dy / mag;

% Extend line to 6 times the diameter

start_x = blue_x - 3*r*dx;

start_y = blue_y - 3*r*dy;

end_x = yellow_x + 3*r*dx;

end_y = yellow_y + 3*r*dy;

% Draw line

plot([start_x, end_x], [start_y, end_y], 'm');

% Redraw

drawnow

pause(0.05) % slow down the drawing a bit

end

hold off

趣味數(shù)學(xué):圓上的兩個(gè)點(diǎn)的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
大化| 时尚| 渝中区| 鱼台县| 封丘县| 佛山市| 五华县| 枣阳市| 泗水县| 奉贤区| 廊坊市| 甘肃省| 蓬安县| 紫金县| 莱阳市| 牡丹江市| 西安市| 化州市| 永泰县| 黔东| 工布江达县| 龙陵县| 邹城市| 凤翔县| 宜章县| 金山区| 福安市| 泾阳县| 永靖县| 漳州市| 类乌齐县| 诏安县| 永泰县| 丰城市| 石阡县| 安达市| 汕头市| 孟村| 宣汉县| 镇安县| 塔河县|