Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function ZScore: TVec; | Transforms vector into vector of standardized data in-place. |
| 2 | function ZScore(const Src: TVec): TVec; | Transforms Src vector into vector of standardized data |
Overload 1: function ZScore: TVec;
Transforms vector into vector of standardized data in-place.
Result: stored in self (calling object), returns self for chaining
Overload 2: function ZScore(const Src: TVec): TVec;
Transforms Src vector into vector of standardized data
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec |
Result: stored in self (calling object), returns self for chaining