Home
last modified time | relevance | path

Searched refs:normcdf (Results 1 – 25 of 173) sorted by relevance

1234567

/dports/math/octave-forge-statistics/statistics-1.4.3/install-conditionally/distributions/
H A Dnormcdf.m19 ## @deftypefn {} {} normcdf (@var{x})
31 function cdf = normcdf (x, mu = 0, sigma = 1) function
75 %!assert (normcdf (x, 1, ones (1,4)), y)
76 %!assert (normcdf (x, ones (1,4), 1), y)
82 %!assert (normcdf ([x, NaN], 1, 1), [y, NaN])
88 %!error normcdf ()
89 %!error normcdf (1,2)
90 %!error normcdf (1,2,3,4)
94 %!error normcdf (i, 2, 2)
95 %!error normcdf (2, i, 2)
[all …]
/dports/science/dynare/dynare-4.6.4/tests/block_bytecode/
H A Dramst_normcdf_and_friends.mod1 // Tests the normcdf(), normpdf() and erf() functions, in the static and the dynamic byecode file
16 t = normcdf(x, 2, 3);
58 if (abs(oo_.steady_state(3) - normcdf(1, 2, 3)) > 1e-10)
59 error('Test failed in static bytecode for normcdf')
62 if (abs(oo_.endo_simul(3, 2) - normcdf(1.2, 2, 3)) > 1e-10)
63 error('Test failed in dynamic bytecode for normcdf')
/dports/science/dynare/dynare-4.6.4/matlab/missing/stats/
H A Dnormcdf.m1 function cdf = normcdf (x, m, s) function
3 % CDF = normcdf(X, M, S) computes the cumulative distribution
7 % CDF = normcdf(X) is equivalent to CDF = normcdf(X, 0, 1)
10 % Original file: statistics/distributions/normcdf.m
32 error ('normcdf: you must give one or three arguments');
43 error ('normcdf: x, m and s must be of common size or scalar');
/dports/math/armadillo/armadillo-10.7.1/include/armadillo_bits/
H A Dfn_normcdf.hpp94 normcdf(const eT x) in normcdf() function
107 normcdf(const eT x, const eT mu, const eT sigma) in normcdf() function
122 normcdf(const eT x, const Base<eT, T2>& M_expr, const Base<eT, T3>& S_expr) in normcdf() function
142 normcdf(const Base<typename T1::elem_type, T1>& X_expr) in normcdf() function
164 normcdf(const Base<typename T1::elem_type, T1>& X_expr, const typename T1::elem_type mu, const type… in normcdf() function
186 normcdf(const Base<typename T1::elem_type, T1>& X_expr, const Base<typename T1::elem_type, T2>& M_e… in normcdf() function
/dports/math/R-cran-RcppArmadillo/RcppArmadillo/inst/include/armadillo_bits/
H A Dfn_normcdf.hpp94 normcdf(const eT x) in normcdf() function
107 normcdf(const eT x, const eT mu, const eT sigma) in normcdf() function
122 normcdf(const eT x, const Base<eT, T2>& M_expr, const Base<eT, T3>& S_expr) in normcdf() function
142 normcdf(const Base<typename T1::elem_type, T1>& X_expr) in normcdf() function
164 normcdf(const Base<typename T1::elem_type, T1>& X_expr, const typename T1::elem_type mu, const type… in normcdf() function
186 normcdf(const Base<typename T1::elem_type, T1>& X_expr, const Base<typename T1::elem_type, T2>& M_e… in normcdf() function
/dports/science/dynare/dynare-4.6.4/tests/
H A Dramst_normcdf_and_friends.mod1 // Tests the normcdf(), normpdf() and erf() functions, in the static M-file, and in a dynamic C-file
16 t = normcdf(x, 2, 3);
68 if (abs(oo_.steady_state(3) - normcdf(1, 2, 3)) > 1e-10)
69 error('Test failed in static M-file for normcdf')
72 if (abs(oo_.endo_simul(3, 2) - normcdf(1.2, 2, 3)) > 1e-10)
73 error('Test failed in dynamic M-file for normcdf')
/dports/math/octave-forge-stk/stk/inst/misc/distrib/
H A Dstk_distrib_normal_cdf.m99 %! [0.5, ... % normcdf ((1 - 1) / 1)
100 %! 0.5; ... % normcdf ((1 - 1) / 10)
101 %! 0.5 * erfc(-sqrt(2)), ... % normcdf ((3 - 1) / 1)
102 %! 0.5 * erfc(-0.1*sqrt(2)) ... % normcdf ((3 - 1) / 10)
/dports/misc/hs-hascard/hascard-0.3.0.1/_cabal_deps/erf-2.0.0.0/src/Data/Number/
H A DErf.hs20 normcdf :: a -> a -- ^@normcdf x = erfc(-x / sqrt 2) / 2@ function
24 erfc x = 2 * normcdf (-x * sqrt 2)
26 normcdf x = erfc(-x / sqrt 2) / 2 function
/dports/math/octave-forge-nan/nan-3.6.1/inst/
H A Dnormcdf.m1 function p = normcdf(x,m,s) function
4 % cdf = normcdf(x,m,s);
54 %!assert(sum(isnan(normcdf([-inf,-2,-1,-.5,0,.5,1,2,3,inf,nan]',2,0))),1)
H A Dnaninsttest.m35 …','ranks','center','trimean','min','max','tpdf','tcdf','tinv','normpdf','normcdf','norminv','nansu…
103 if exist('normcdf','file'),
104 fun='normcdf';
/dports/science/dynare/dynare-4.6.4/preprocessor/src/macro/
H A DForwardDeclarationsAndEnums.hh113 normcdf, enumerator
143 normcdf enumerator
H A DExpressions.cc245 Real::normcdf(const BaseTypePtr &btp1, const BaseTypePtr &btp2) const in normcdf() function in Real
852 case codes::UnaryOp::normcdf: in eval()
853 return arg->eval()->normcdf(); in eval()
940 case codes::TrinaryOp::normcdf: in eval()
941 return arg1->eval()->normcdf(arg2->eval(), arg3->eval()); in eval()
1187 case codes::UnaryOp::normcdf: in to_string()
1265 case codes::TrinaryOp::normcdf: in to_string()
/dports/science/dynare/dynare-4.6.4/contrib/ms-sbvar/TZcode/MatlabFiles/
H A Dnormpar.m26 f1 = PLO - normcdf(XLO, a, b);
27 f2 = PUP - normcdf(XUP, a, b);
/dports/math/octave-forge-statistics/statistics-1.4.3/inst/
H A Dcdf.m53 ## normcdf, poisscdf, raylcdf, tcdf, unifcdf, wblcdf}
73 {"norm", "normal"}, @normcdf, 2, ...
109 %! assert(cdf ('norm', 1, 0, 1), normcdf (1, 0, 1))
H A Djsucdf.m28 ## This function is derived from normcdf.m
54 error ("normcdf: x, alpha1 and alpha2 must be of common size or scalar");
H A Dztest.m89 p = 2*(1 - normcdf(abs(zval)));
93 p = normcdf(zval);
97 p = 1 - normcdf(zval);
H A Dnormalise_distribution.m249 %! N = normalise_distribution ( A, @normcdf );
266 %! N = normalise_distribution ( A, { "unifcdf", "normcdf" } );
272 %! N = normalise_distribution ( A, { @unifcdf; @normcdf; @( x )( expcdf ( x, 1 ) ) }, 2 );
283 %! fail ("normalise_distribution( zeros ( 3, 4 ), { @unifcdf; @normcdf; @( x )( expcdf ( x, 1 ) ) }…
H A Dsigntest.m138 pl = normcdf(stats.zval);
145 p = normcdf(stats.zval);
151 p = 1-normcdf(stats.zval);
H A Dbbscdf.m66 cdf(k) = normcdf ((b - b.^-1) / shape);
70 cdf(k) = normcdf ((b - b.^-1) ./ shape(k));
/dports/math/octave-forge-financial/financial-0.5.3/inst/
H A Dblsprice.m58 phi1 = normcdf (d1);
59 phi2 = normcdf (d2);
H A Dblstheta.m58 phi1 = normcdf (d1);
59 phi2 = normcdf (d2);
H A Dblslambda.m44 ## is, they compute normcdf(d1) * S / V when they should compute
45 ## exp(-Yield*T) * normcdf(d1) * S / V. At the time of writing, this bug is
/dports/graphics/dataplot/dataplot-2c1b27601a3b7523449de612613eadeead9a8f70/lib/frmenus/prob/
H A Dnormcdf.top1 ----- <~prob\normcdf.top> Plot Symmetric cdf's
/dports/science/py-GPy/GPy-1.10.0/GPy/util/
H A Dfunctions.py17 def normcdf(x): # pragma: no cover function
/dports/math/octave-forge-nan/nan-3.6.1/
H A DINDEX7 nanfilter1uc normpdf normcdf norminv meandev

1234567