执行时:
x=1:100;
figure(1)
title('Sobel software execution scalability')
我获得:
但是,当我绘制一些东西时,执行例如:
x=1:100;
figure(1)
title('Sobel software execution scalability')
plot(x)
结果是另一个:
该图存在,但标题消失了。我做错了什么?
我找到的解决方案是添加hold on
:
x=1:100;
figure(1)
title('Sobel software execution scalability')
hold on
plot(x)
但听起来很奇怪。我是否可能需要一直添加hold on
?如果我需要更改数字运行时怎么办?
请注意,这几行只是为了在主机上复制错误而编写的。
答案 0 :(得分:1)
答案是:在情节之后打印标题。否则,情节会覆盖之前的数字。