用MATLAB怎么画直角坐标系的坐标轴

问题描述:

用MATLAB怎么画直角坐标系的坐标轴
希望有图形和加箭头的坐标轴

举个例子吧x=-5:10; y=-5:10;plot(x,y); axis off; hold on;plot([0 0],[min(y) max(y)],'k',[min(x) max(x)],[0 0],'k');ax=[max(x),max(x)-0.3,max...