ILNumerics Ultimate VS

ILMathtoint64 Method (BaseArraySByte)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Convert elements to Int64.

[ILNumerics Computing Engine]

Namespace:  ILNumerics
Assembly:  ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax

public static RetArray<long> toint64(
	BaseArray<sbyte> A
)

Parameters

A
Type: ILNumericsBaseArraySByte
Input array.

Return Value

Type: RetArrayInt64
Array{long} of the same shape as A.
Remarks

The operation is efficiently performed on all elements of the input array A.

The storage order of the array returned depends on the order of A. If A.IsContinuous is true the array returned will have the same StorageOrder as A. Otherwise, the elements of the returned array will be reordered in the order defined by DefaultStorageOrder (default: ColumnMajor).

The operation is performed in multiple threads, according to the current settings of MaxNumberThreads.

The input array A is not altered. However, if A's storage is suitable and not shared by other arrays its memory will be used for the result and the operation is performed 'inplace'.

[ILNumerics Computing Engine]

See Also

Reference