停止自动缩放轴

时间:2014-02-06 15:10:16

标签: matlab plot

我有这段代码:

function masterPiece()

figure
axis manual
axis([-10 10 -10 10])

plot(3,3,'Marker','o','MarkerFaceColor','red');

这会产生以下图像。如何将轴设置为-10到10?enter image description here

2 个答案:

答案 0 :(得分:2)

axis([-10 10 -10 10])行之后移动plot 行。

或者:在<{em> hold on之前加入plot 。这将冻结轴属性。

答案 1 :(得分:0)

figure
axis manual
axis([-10 10 -10 10])
hold on
plot(3,3,'Marker','o','MarkerFaceColor','red');

否则会创建新的情节