在Matlab中的笛卡尔平面

时间:2018-05-22 10:27:03

标签: matlab matlab-figure

如何让Matlab绘制这样的平面?无法在文档中找到plot命令的设置。也许这样的飞机还有另一个命令?

enter image description here

1 个答案:

答案 0 :(得分:4)

如果您使用的是MATLAB 2015b及更高版本,请选中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'; 

enter image description here