qgauss.m

来自「时间序列分析中很用的源码,书的原名为时间序列分析的小波方法.」· M 代码 · 共 13 行

M
13
字号
function y=QGauss(x)%% computes the  abscissae y for given probability x% for a standard Gaussian% this is 1-F(x)%%  x: real col vector of right-tail probs%  y: real column vector of abscissae%% [0.5 0.1587 0.0228]' should give [0 0.9998 1.9991]'%y=sqrt(2).*erfinv(1-2.*x);

⌨️ 快捷键说明

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