procedure PowerDeriv(RegressFun: TRegressFun; X: Double; Y: Double; const Pars: TDoubleArray; const Grad: TVec);
Derivatives of power function.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | RegressFun | TRegressFun | |
| 2 | X | Double | scalar |
| 3 | Y | Double | scalar |
| 4 | Pars | TDoubleArray | |
| 5 | Grad | TVec |
Result: stored in self (calling object)
Remarks:
Calculates the derivatives of the power function at point (X,Y) with respect to the regression parameters Pars. The results are returned in Grad vector. Grad.Values[I] contains the derivative with respect to the I-th parameter. The Length and Complex properties of the Grad vector are adjusted automatically.
See Also: RegModels.PowerEval, RegModels.PowerFit