要画出一条与x轴垂直的直线,比如x=1;y=0:10;line(x,y);画出的是虚线,怎么才能画出正常的实线,与一般plot画出的曲线一样.
一个笨方法:x=linspace(2,2,10)
x =
2 2 2 2 2 2 2 2 2 2
>> y=1:10;>> plot(x,y)