我在想,有没有办法在MuPAD中将地轴的比例设置为对数?这在Matlab绘图中是可能的,但我无法为MuPAD找到一个选项。
发布于 2013-06-30 13:39:52
CoordinateType属性允许我们在线性图和对数图之间切换。
默认情况下,CoordinateType设置为LinLin,即线性图。对数2d图有3例。
半圆图
例如plot(plot::Function2d(exp(x), x = 0 .. 100), CoordinateType = LinLog):

plot(plot::Function2d(5*log(10,x) + 8, x = 1 .. 100),CoordinateType = LogLin):

对数图
plot(plot::Function2d(sqrt(5*x) + x^4, x = 10^(-3) .. 10^3), CoordinateType = LogLog):

Reference:坐标类型
https://stackoverflow.com/questions/16413992
复制相似问题