ILNumerics Ultimate VS

ILMathapplyTin1, Tin2, Tout Method (BaseArrayTin1, BaseArrayTin2, FuncTin1, Tin2, Tout)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Binary, elementwise, broadcasting apply<T1,T2,Tout>(A,B). Maps a scalar operation from elements of A and B to a third array. Arbitrary types. Parallelized.

[ILNumerics Computing Engine]

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

public static RetArray<Tout> apply<Tin1, Tin2, Tout>(
	BaseArray<Tin1> A,
	BaseArray<Tin2> B,
	Func<Tin1, Tin2, Tout> func
)

Parameters

A
Type: ILNumericsBaseArrayTin1
The one array.
B
Type: ILNumericsBaseArrayTin2
The other array.
func
Type: SystemFuncTin1, Tin2, Tout
The elementary (scalar) function to be used to perform the operation on corresponding elements of A and B.

Type Parameters

Tin1
Tin2
Tout

Return Value

Type: RetArrayTout
Result of operating elements of A and B elementwise.
Remarks

[ILNumerics Computing Engine]

See Also

Reference

MathInternal.apply``3(BaseArrayUMP, BaseArrayUMP, FuncUMP, UMP, Int64, UMP)

Other Resources