Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec *ReplaceNAN(const double Value) const; | Replaces all NAN values with Value. |
| 2 | TMtxVec *ReplaceNAN(const double Value, int Index, int Len) const; | Replaces all NAN values with Value within calling object elements [Index]..[Index+Len-1]. |
Overload 1: TMtxVec *ReplaceNAN(const double Value) const;
Replaces all NAN values with Value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const double |
Remarks:
The function will replace all occurences of NAN. If the vector is complex, it will replace any real/imag parts, which are NAN.
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: TMtxVec *ReplaceNAN(const double Value, int Index, int Len) const;
Replaces all NAN values with Value within calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const double | |
| 2 | Index | int | |
| 3 | Len | int |
Remarks:
The function will replace all occurences of NAN. If the vector is complex, it will replace any real/imag parts, which are NAN. An exception is raised, if array borders are overrun.
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler