ILNumerics Ultimate VS

ILMatharrayT Method (T, Int32)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development

Note: This API is now obsolete.

Creates an array from values and size. Column major storage.

[ILNumerics Computing Engine]

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

[ObsoleteAttribute("Use vector(..).Reshape(..) instead!")]
public static RetArray<T> array<T>(
	T[] values,
	params int[] size
)

Parameters

values
Type: T
Values for the new array will be copied from this System.Array.
size
Type: SystemInt32
Size descriptor providing the dimension lengths for the new array.

Type Parameters

T
Element type.

Return Value

Type: RetArrayT
Array of T elements and a size according to size.
Exceptions

ExceptionCondition
ArgumentExceptionif the size given by size does not match the number of values provided.
Remarks

[ILNumerics Computing Engine]

See Also

Reference