ILNumerics.Net
add Method (A, B)

ILNumerics.Net - numeric computing and plotting for .NET

ILNumerics.BuiltInFunctionsILMathadd(ILArray<(Of <(complex>)>), ILArray<(Of <(complex>)>))
ILNumerics.Net - numeric computing for .NET
sum two arrays elementwise
Declaration Syntax
C#Visual BasicVisual C++
public static ILArray<complex> add(
	ILArray<complex> A,
	ILArray<complex> B
)
Public Shared Function add ( _
	A As ILArray(Of complex), _
	B As ILArray(Of complex) _
) As ILArray(Of complex)
public:
static ILArray<complex>^ add(
	ILArray<complex>^ A, 
	ILArray<complex>^ B
)
Parameters
A (ILArray<(Of <(complex>)>))
input 1
B (ILArray<(Of <(complex>)>))
input 2
Return Value
Array with elementwise sum of A and B
Remarks

On empty input - empty array will be returned.

A and / or B may be scalar. The scalar value will operate on all elements of the other arrays in this case.

If neither of A or B is scalar or empty, the dimensions of both arrays must match.

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