Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void CauchyFit(TVec X, ref Double m, ref Double b, ref Double[] mCI, ref Double[] bCI, Int32 MaxIter, Double Tolerance, Double Alpha) | Calculate the parameters and their (1-Alpha) confidence invervals for Cauchy distributed values. |
| 2 | void CauchyFit(TVec X, ref Double m, ref Double b, Int32 MaxIter, Double Tolerance) | Calculate parameters for Cauchy distributed values. |
Overload 1: void CauchyFit(TVec X, ref Double m, ref Double b, ref Double[] mCI, ref Double[] bCI, Int32 MaxIter, Double Tolerance, Double Alpha)
Calculate the parameters and their (1-Alpha) confidence invervals for Cauchy distributed values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec | source TVec |
| 2 | m | Double (ref) | output |
| 3 | b | Double (ref) | output |
| 4 | mCI | Double[] (ref) | |
| 5 | bCI | Double[] (ref) | |
| 6 | MaxIter | Int32 | |
| 7 | Tolerance | Double | scalar |
| 8 | Alpha | Double | scalar |
Result: stored in self (calling object)
Overload 2: void CauchyFit(TVec X, ref Double m, ref Double b, Int32 MaxIter, Double Tolerance)
Calculate parameters for Cauchy distributed values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec | source TVec |
| 2 | m | Double (ref) | output |
| 3 | b | Double (ref) | output |
| 4 | MaxIter | Int32 | |
| 5 | Tolerance | Double | scalar |
Result: stored in self (calling object)