gusucode.com > 用粒子滤波算法进行跟踪的matlab代码 > gmm_utilities/kernel_transform.m

    function g = kernel_transform(g, F)

g.x = F*g.x;
g.P = F*g.P*F';