Matrix<T>.Add Method

Note: This API is now obsolete.
Adds a constant to a matrix and returns the result.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
[ObsoleteAttribute("Use the AddInPlace method instead.")]
public Matrix<T> Add(
	T value
)

Parameters

value  T
The value to add.

Return Value

Matrix<T>
A reference to this instance.

See Also