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