卡尔曼滤波器简介——7最大化高斯分布

已知高斯分布公式

求最大的f(x)?

#For this problem, you aren't writing any code.
#Instead, please just change the last argument 
#in f() to maximize the output.

from math import *

def f(mu, sigma2, x):
    return 1/sqrt(2.*pi*sigma2) * exp(-.5*(x-mu)**2 / sigma2)

print f(10.,4.,10.) #Change the 8. to something else!

当 x的值等于mu的值时,f(x)最大。

猜你喜欢

转载自www.cnblogs.com/fuhang/p/8939649.html