chisqq.m

来自「统计分析的软件包」· M 代码 · 共 16 行

M
16
字号
function q = chisqq(p,v)
%CHISQQ	Quantiles of the chi-square distribution.
%	Q = CHISQQ(P,V) satisfies P(X < Q) = P, where X follows a
%	chi-squared distribution on V degrees of freedom.
%	V must be a scalar.
%
%	See also CHISQP.

%	Gordon K Smyth, University of Queensland, gks@maths.uq.edu.au
%	27 July 1999

%	Reference:  Johnson and Kotz (1970). Continuous Univariate
%	Distributions, Volume I. Wiley, New York.

q = 2*gammaq(p,v/2);

⌨️ 快捷键说明

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