Draw angles lines over circle and get the intersecting points
问题 I wish to draw angle lines over a circle (I change the angles in the script). The plot line I get is 0 angle, why does the script not show me all of them, and how can I fix it? In addition, how can I calculate the intersection points? Script: clc; clear; close all; r=1000; % based on : https://stackoverflow.com/questions/29194004/how-to-plot-a-circle-in-matlab nCircle = 1000; t = linspace(0,2*pi,nCircle); xCircle = 0+ r*sin(t); yCircle = 0+ r*cos(t); line(xCircle,yCircle ); axis equal; hold