标签: matlab matlab-figure
如何让Matlab绘制这样的平面?无法在文档中找到plot命令的设置。也许这样的飞机还有另一个命令?
plot
答案 0 :(得分:4)
如果您使用的是MATLAB 2015b及更高版本,请选中AxisLocation。
AxisLocation
figure hold on axis([-1 1 -1 1]) quiver(0,0,-1,1,'k') quiver(0,0,1,1,'k') ax = gca; ax.XAxisLocation = 'origin'; ax.YAxisLocation = 'origin';