figure
1 次查看(过去 30 天)
显示 更早的评论
how to move line in a figure continuously by which one of its ends fixed at zero and the ling move around zero
0 个评论
采纳的回答
Wayne King
2012-3-31
You mean like?
r = 1;
theta = 0:0.01:(2*pi);
y = r.*exp(1j*theta);
for nn = 1:length(theta)
quiver(0,0,real(y(nn)),imag(y(nn)));
axis([-1 1 -1 1]); grid on;
pause(0.05);
end
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!