function ReplaceNAN(const Value: Double): TMtxVec;
Replaces all NAN values with Value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Double |
Result: stored in self (calling object), returns self for chaining
Indexed: function ReplaceNAN(const Value: Double; Index: Integer; Len: Integer): TMtxVec;
Replaces all NAN values with Value within calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Double | |
| 2 | Index | Integer | start index |
| 3 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
Remarks:
An exception is raised if array borders are overrun.