ILNumerics.Net
ILArray<(Of <(BaseT>)>) Constructor (data, dimensions)

ILNumerics.Net - numeric computing and plotting for .NET

ILNumericsILArray<(Of <(BaseT>)>)ILArray<(Of <(BaseT>)>)(array<BaseT>[]()[], ILDimension)
ILNumerics.Net - numeric computing for .NET
Create ILArray of specified size and type
Declaration Syntax
C#Visual BasicVisual C++
public ILArray(
	BaseT[] data,
	ILDimension dimensions
)
Public Sub New ( _
	data As BaseT(), _
	dimensions As ILDimension _
)
public:
ILArray(
	array<BaseT>^ data, 
	ILDimension^ dimensions
)
Parameters
data (array< BaseT >[]()[])
preallocated array with data. The array will directly be used for storage. No copy will be done.
dimensions (ILDimension)
dimension specification. The ILDimension given must not be null and will directly be used for the new object! No copy will be made for it!
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)