ILNumerics Ultimate VS

CellStorageCreate Method

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Create new storage for the given size. Elements are uninitialized!

[ILNumerics Core Module]

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

public static CellStorage Create(
	Size size
)

Parameters

size
Type: ILNumericsSize
Size for the new storage.

Return Value

Type: CellStorage
Storage, capable of storing an array of a size according to size.
Remarks

This will get the storage from the storage pool if possible. A new storage is returned only if no matchine storage was available in the pool.

The storage is created as column major storage. Only the number and lengths of size are considered. Striding is recreated (column major) and base offset will be 0.

[ILNumerics Core Module]

See Also

Reference