Overload List
| # | Signature | Description |
|---|---|---|
| 1 | int *PIValues(const int Index) const; | Obtains a pointer to the integer value of the vector at Index. |
| 2 | int *PIValues(const int Row, const int Col) const; | Returns a pointer to the real value stored at Row and Col. |
Overload 1: int *PIValues(const int Index) const;
Obtains a pointer to the integer value of the vector at Index.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | const int |
Remarks:
The function returns @IValues[i]. Under .NET this is a pointer to unmanaged memory or pinned managed memory.
See Also: MatrixInt::PSValues, MatrixInt::PBValues
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 2: int *PIValues(const int Row, const int Col) const;
Returns a pointer to the real value stored at Row and Col.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Row | const int | |
| 2 | Col | const int |
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler