ILNumerics.Net
ILLogicalArray Constructor (data, size)

ILNumerics.Net - numeric computing and plotting for .NET

ILNumericsILLogicalArrayILLogicalArray(array<Byte>[]()[], array<Int32>[]()[])
ILNumerics.Net - numeric computing for .NET
constructor - create ILLogicalArray of specified size from data array
Declaration Syntax
C#Visual BasicVisual C++
public ILLogicalArray(
	byte[] data,
	params int[] size
)
Public Sub New ( _
	data As Byte(), _
	ParamArray size As Integer() _
)
public:
ILLogicalArray(
	array<unsigned char>^ data, 
	... array<int>^ size
)
Parameters
data (array< Byte >[]()[])
byte array matching the size of the dimensions specified. The data will directly be used as storage! No copy will be made!
size (array< Int32 >[]()[])
Variable length int array specifying the number and size of dimensions to be created.
Remarks
The size parameter may not be null or an empty array! An Exception will be thrown in this case. The dimensions will be trimmed before processing (removing trailing non singleton dimensions). Depending on the requested size an ILLogicalArray of the specified size will be created. The type of storage will be
CopyC#
byte
.

Assembly: ILNumerics.Net (Module: ILNumerics.Net) Version: 1.4.1.1 (0.10.2.0)