Tensor<T>.AdditionAssignment Operator

Definition

Namespace: Numerics.NET.Tensors
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 9.0.3

Overload List

AdditionAssignment(Tensor<T>, T) Adds a constant to a matrix in place.
AdditionAssignment(Tensor<T>, Tensor<T>) Adds another matrix to a matrix in place.

AdditionAssignment(Tensor<T>, T) Operator

Adds a constant to a matrix in place.
C#
C# does not support this operator.

Parameters

self  Tensor<T>
A Tensor<T>.
term  T
A real number.

Return Value

Tensor<T>
A reference to self.

AdditionAssignment(Tensor<T>, Tensor<T>) Operator

Adds another matrix to a matrix in place.
C#
C# does not support this operator.

Parameters

self  Tensor<T>
A Tensor<T>.
term  Tensor<T>
The matrix to add to self.

Return Value

Tensor<T>
A reference to self.

See Also