MatrixInt.PSValues Method

Overload List

#SignatureDescription
1IntPtr PSValues(Int32 Index)Obtains a pointer to the integer value of the vector at Index.
2IntPtr PSValues(Int32 Row, Int32 Col)Returns a pointer to the real value stored at Row and Col.

Overload 1: IntPtr PSValues(Int32 Index)

Obtains a pointer to the integer value of the vector at Index.

#NameTypeDescription
1IndexInt32start index

Returns: IntPtr

Remarks:

The function returns @SValues[i]. Under .NET this is a pointer to unmanaged memory or pinned managed memory.

See Also: MatrixInt.PIValues, MatrixInt.PBValues

Overload 2: IntPtr PSValues(Int32 Row, Int32 Col)

Returns a pointer to the real value stored at Row and Col.

#NameTypeDescription
1RowInt32
2ColInt32

Returns: IntPtr