📄 stdtdis_cdf.m
字号:
function F = stdtdis_cdf (x, n)
% PURPOSE:
% returns cdf at x of the standardized to unit variance t(n) distribution
%
% USAGE:
% cdf = stdtdis_cdf(x,n)
%
% INPUTS:
% x = a vector
% n = a scalar parameter with dof must be > 2
%
% OUTPUTS:
% a vector of cdf at each element of x of the standardized t(n) distribution
%
% COMMENTS:
% SEE ALSO: stdtdis_rnd, stdtdis_pdf
%
%
% Anders Holtsberg, 18-11-93
% Copyright (c) Anders Holtsberg
% modified by J.P. LeSage
% Modified: Kevin Sheppard
% kksheppard@ucsd.edu
% Revision: 2 Date: 12/31/2001
if nargin ~= 2
error('Wrong # of arguments to tdis_cdf');
end;
if any(any(n<=0))
error('tdis_cdf dof is wrong');
end
x=x.*sqrt(n./(n-2));
[nobs junk] = size(x);
neg = x<0;
F = fdis_cdf(x.^2,1,n);
iota = ones(nobs,1);
out = iota-(iota-F)/2;
F = out + (iota-2*out).*neg;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -