ILNumerics Ultimate VS

ILMathcell Method (BaseArray, Int32)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development

Note: This API is now obsolete.

Create cell, initialize with arrays and size.

[ILNumerics Computing Engine]

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

[ObsoleteAttribute("Use cell(InArray<long> size,IEnumerable<BaseArray> arrays) instead!")]
public static RetCell cell(
	BaseArray[] values,
	params int[] size
)

Parameters

values
Type: ILNumericsBaseArray
Predefined system array with ILNumerics arrays as elements to be stored into the new cell.
size
Type: SystemInt32
Size of the new cell array.

Return Value

Type: RetCell
Cell with size of size and elements from values
Remarks

The arrays given in values are stored into the new cell as individual cell elements. As for all cell elements, a (lazy) clone is made prior to storing the arrays into the cell. Therefore, the arrays are properly protected from changes from outside the cell.

This function is deprecated and will be removed in a future version. Consider using cell(InArrayInt64, IEnumerableBaseArray, StorageOrders) instead which does not rely on params arguments.

Visit the online documentation for cell.

[ILNumerics Computing Engine]

See Also

Reference

MathInternal.cell(InArrayInt64, IEnumerableBaseArray, StorageOrders)
MathInternal.vector``1(UMP, UMP, UMP)