Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在尝试在 matlab 中求解和绘制积分时遇到了一些麻烦。事实上,我知道如果解决一个问题,我将解决我现在需要的所有积分。
我在 x 轴上绘制了变量“d”的值,在 y 轴上绘制了从 -inf 到 ((40*log10(d)-112)/36) 的归一化高斯函数的积分值,我是没有找到正确的方法。D 介于 0 和 1600 之间
有人可以帮我吗?
在 Matlab 中,您可以使用积分函数来计算积分:
q = integral(fun,xmin,xmax)
fun 需要是一个函数句柄,也称为函数函数,比如这两个例子:
square = @(x) x.^2; plusone = @(x) x+1;