Matrix.FloorInto<T> Method

Computes the largest integer less than or equal to the elements of a matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Matrix<T> FloorInto<T>(
	Matrix<T> matrix,
	Matrix<T> result
)

Parameters

matrix  Matrix<T>
A matrix.
result  Matrix<T>
The matrix that is to hold the result. May be null.

Type Parameters

T

Return Value

Matrix<T>
A matrix whose elements are the largest integer less than or equal to the corresponding element of matrix.

Exceptions

ArgumentNullExceptionmatrix is null

See Also