matlab画对数坐标图

plot(x,y)
x 轴和y 轴均为线性刻度
loglog(x,y)
x 轴和y 轴均为对数刻度

semilogx(x,y)
semilogx(…) is the same as PLOT(…), except a logarithmic (base 10) scale is used for the X-axis.
x 轴为对数刻度,y 轴为线性刻度

semilogy(x,y)
semilogy(…) is the same as PLOT(…), except a logarithmic (base 10) scale is used for the Y-axis.
x 轴为线性刻度,y 轴为对数刻度

你可能感兴趣的:(matlab)