Overload List
| # | Signature | Description |
|---|---|---|
| 1 | procedure LnEval(const B: TVec; const X: TVec; const YHat: TVec); | Evaluate logarithm function (fully vectorized). |
| 2 | procedure LnEval(const B: TDoubleArray; const X: TVec; const YHat: TVec); | Evaluate the logarithm model (partially vectorized). |
| 3 | function LnEval(const B: TDoubleArray; X: Double): Double; | Evaluate the logarithm y(x)=b[0] + b[1]*ln(x) model. |
Overload 1: procedure LnEval(const B: TVec; const X: TVec; const YHat: TVec);
Evaluate logarithm function (fully vectorized).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | B | TVec | |
| 2 | X | TVec | |
| 3 | YHat | TVec |
Result: stored in self (calling object)
See Also: RegModels.LnFit
Overload 2: procedure LnEval(const B: TDoubleArray; const X: TVec; const YHat: TVec);
Evaluate the logarithm model (partially vectorized).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | B | TDoubleArray | |
| 2 | X | TVec | |
| 3 | YHat | TVec |
Result: stored in self (calling object)
Overload 3: function LnEval(const B: TDoubleArray; X: Double): Double;
Evaluate the logarithm y(x)=b[0] + b[1]*ln(x) model.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | B | TDoubleArray | |
| 2 | X | Double | scalar |
Returns: Double
Remarks:
The observed values obey the following equation: