我正在绘制一个圆形图并自己计算圆的坐标。
E.g。
my_vector=0:0.1:2*pi;
for i=1:length(my_vector),
plot(...,'LineWidth',3);
...%some other functions like
my_fill=fill(...)
pause
delete(my_fill)
end
LineWidth
没有效果。我甚至试过20次
答案 0 :(得分:1)
你一次只画一个点吗?
你能做这样的事吗?
plot(x_coord, y_coord, 'k.', 'markersize', 20)
这提供了一个圆点:
my_vector=0:0.1:2*pi;
for ii = 1:length(my_vector)
x = cos(ii);
y = sin(ii);
plot(x,y, 'k.', 'markersize', 10)
hold on
end