Subtracts a matrix from a scalar.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> SubtractInto<T>(
T value,
Matrix<T> matrix,
Matrix<T> result
)
Public Shared Function SubtractInto(Of T) (
value As T,
matrix As Matrix(Of T),
result As Matrix(Of T)
) As Matrix(Of T)
public:
generic<typename T>
static Matrix<T>^ SubtractInto(
T value,
Matrix<T>^ matrix,
Matrix<T>^ result
)
static member SubtractInto :
value : 'T *
matrix : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
Parameters
- value
- Type: T
The value to subtract
from. - matrix
- Type: Extreme.MathematicsMatrixT
The matrix to subtract. - result
- Type: Extreme.MathematicsMatrixT
The matrix that is to hold the result. May be .
Type Parameters
- T
Return Value
Type:
MatrixTA matrix whose elements are
equal to the corresponding element of
value minus the corresponding element
of
matrix.
Reference