Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec *StripNanAndInf(TMtxVec *Src) const; | Copy Src into self, dropping every NAN/INF element and compacting the result. |
| 2 | TMtxVec *StripNanAndInf(TMtxVec *Src, int SrcIndex, int Len) const; | Copy Src elements [SrcIndex..SrcIndex+Len-1] into self, dropping every NAN/INF element. |
| 3 | int StripNanAndInf(TMtxVec *Src, int SrcIndex, int Index, int Len) const; | Copy Src elements [SrcIndex..SrcIndex+Len-1] into self elements starting at Index, dropping every NAN/INF element. Returns the count of valid elements kept - less than Len if Src contained NAN or INF values. |
Overload 1: TMtxVec *StripNanAndInf(TMtxVec *Src) const;
Copy Src into self, dropping every NAN/INF element and compacting the result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVec * |
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: TMtxVec *StripNanAndInf(TMtxVec *Src, int SrcIndex, int Len) const;
Copy Src elements [SrcIndex..SrcIndex+Len-1] into self, dropping every NAN/INF element.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVec * | |
| 2 | SrcIndex | int | |
| 3 | Len | int |
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler
Overload 3: int StripNanAndInf(TMtxVec *Src, int SrcIndex, int Index, int Len) const;
Copy Src elements [SrcIndex..SrcIndex+Len-1] into self elements starting at Index, dropping every NAN/INF element. Returns the count of valid elements kept - less than Len if Src contained NAN or INF values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVec * | |
| 2 | SrcIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler