标签: matlab graph plot matlab-figure
代码是
figure; x = 0:.1:20; semilogy(x,10.^x); hold on; line([10 10],[0 10^10]);
但垂直线没有出现,有什么想法吗? 非常感谢。
答案 0 :(得分:2)
问题是0中的line([10 10],[0 10^10])。使用
0
line([10 10],[0 10^10])
line([10 10],[1 10^10]);
日志比例中的0值存在问题,因为它会在y轴上无限下降。
y