
Plot circle with radius r and roughness amplitude e
19 ビュー (過去 30 日間)
古いコメントを表示
How to model or plot circular cross-section of radius (r) with roughness of amplitude (e) on the circumference.
0 件のコメント
採用された回答
Ameer Hamza
2020 年 5 月 17 日
Try this
r = 1; % radius
e = 0.15;
theta = linspace(0, 2*pi, 100);
R = r*ones(size(theta)) + (rand(size(theta))-0.5).*e/2;
x = R.*cos(theta);
y = R.*sin(theta);
plot(x, y, '.-');
axis([-r-0.5 r+0.5 -r-0.5 r+0.5])

0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Descriptive Statistics and Visualization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!