No BSD License
function [X,Y]=circle_data(cx,cy,r) i=1; delta=0.01; for theta=0:delta:2*pi X(i)=cx+r*cos(theta); Y(i)=cy+r*sin(theta); i=i+1; end
Contact us at files@mathworks.com