Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在绘制一个圆图并自己计算圆的坐标。
例如
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
LineWidth
你是一次绘制一个点吗?
你能做这样的事情吗?
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