ILNumerics.Net - numeric computing for .NET
Create ILArray of specified size and type

Declaration Syntax
public ILArray(
BaseT[] data,
params int[] size
)
Public Sub New ( _
data As BaseT(), _
ParamArray size As Integer() _
)
public:
ILArray(
array<BaseT>^ data,
... array<int>^ size
)

Parameters
- data (array<
BaseT
>[]()[])
- preallocated array with data. The array will
directly be used for storage. No copy will be done.
- size (array<
Int32
>[]()[])
-
Variable length integer array specifying the number and size of dimensions
to be created.

Remarks
The size parameter may not be null or empty!
An exception will be thrown in this case. The dimensions will be trimmed
before processing (removing non singleton dimensions from the end).
Depending on the requested size an ILArray of the specified type and
dimension will be created.
Assembly:
ILNumerics.Net (Module: ILNumerics.Net) Version: 1.4.1.1 (0.10.2.0)