semilogx:x轴采用对数刻度;semilogy:y轴采用对数刻度;loglog:x轴和y轴都采用对数刻度;例如:>> a=rand(1,10);>> plot(a)>> subplot(1,2,1);>> plot(a)>> subplot(1,2,2);>> semilogy(a)