How can I draw infinite concentric ellipses with centre (0,0) at an interval of 0.001 upto half axis lengths of 5
1 回表示 (過去 30 日間)
古いコメントを表示
0 件のコメント
採用された回答
Star Strider
2021 年 2 月 14 日
Experiment with this to get the result you want:
elps = @(r,rr) [r*cos(linspace(0,2*pi)); r*rr*sin(linspace(0,2*pi))]; % Ellipse Vectors
N = 25; % Number Of Ellipses
r = linspace(0,1,N)*0.001; % Initial Radius
rratio = 1/2.5; % Radius Ratio
figure
hold on
for k = 1:N
e = elps(r(k),rratio);
plot(e(1,:), e(2,:))
end
hold off
axis('equal')
.
2 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!