2.1.24.5.2.14 ocmath_para_loglogistic


Description

Estimate parameters for Log-Logistic Distribution

Syntax

BOOL ocmath_para_loglogistic( int iSize, const double * pData, double alpha, double * pPara, double * pSE = NULL, double * pCI_lb = NULL, double * pCI_ub = NULL, double * pHessian = NULL, double * pCov = NULL, const double * pFixed = NULL )

Parameters

iSize
[input]input data size
pData
[input]input data
alpha
[input]significance level
pPara
[output]{mu(location), s(scale)}
pSE
[output]se of parameter estimates
pCI_lb
[output] lower limit of parameters
pCI_ub
[output] upper limit of parameters
mHessian
[output] Hessian matrix
mCov
[output] covariance matrix
pFixed
[input] if NULL, no parameters fixed. Otherwise, vFixedPara has size equal to the number parameters. vPara[i] is fixed at vFixedPara[i] if vFixedPara[i] is not a missing value. Fixing mu only is NOT allowed.

Return

return TRUE on successful exit; if an error or warning has been detected, then it returns the specific error or warning code.

Examples

Remark

See Also

Header to Include

origin.h

Reference