How can i draw a previously specified dimensions lattice ?
1 次查看(过去 30 天)
显示 更早的评论
if i have a center point (xo, yo) and i want to draw a lattice of crossed circles similar to the following figure where the radius of the circle is (r)

0 个评论
回答(1 个)
Robert
2016-7-12
Using x as your list of x coordinates and y as your list of y coordinates of the circle centers:
R = 1; % or whatever you like...
t = linspace(0,2*pi,100);
cx = R*cos(t);
cy = R*sin(t);
figure
hold all
for ii = 1:length(x)
plot(cx+x(ii),cy+y(ii))
end
hold off
axis equal
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Exploration 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!