English
首页
论坛
博客
多用户博客
在线工具
在线手册
开通博客赚积分
发布资源赚积分
分类
源码开发语言/平台
当前位置:
首页
> 源码/资料 >
Windows编程
>
其他小程序
> 查看源码
normal_coef.m
资源名称:
kalmanmatalab.rar [点击查看]
上传用户:
mozhenmi
上传日期:
2008-02-18
资源大小:
13k
文件大小:
0k
源码类别:
其他小程序
开发平台:
Matlab
normal_coef.m:源码内容
function c = normal_coef (Sigma)
%
% c = normal_coef (Sigma)
% Compute the normalizing coefficient for the gaussian.
n = length(Sigma);
c = (2*pi)^(-n/2) * det(Sigma)^(-0.5);