⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chi_square_bound.m

📁 This a collection of MATLAB functions for extended Kalman filtering, unscented Kalman filtering, par
💻 M
字号:
function x = chi_square_bound(prob, n)
%function x = chi_square_bound(prob, n)
%
% INPUTS: 
%   prob - probability [0, 1)
%   n - degrees of freedom
%
% OUTPUT: 
%   x - point on the x-axis where the Chi-squared probability mass F(x) equals prob.
%
% Tim Bailey 2005.

if prob < 0 | prob >= 1, error('Probability must be in interval [0, 1)'), end

% Hunt for upper bound
upper = 5;
while 1
    f = chi_square_mass(upper, n);
    if f >= prob, break, end
    upper = upper * 2;
end

% Perform bounded search for root
x = fzero(@root_fnctn, [0; upper], optimset('disp','off'), prob, n);

%
%

function y = root_fnctn(x, prob, n)
y = chi_square_mass(x, n) - prob;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -