Managed Linear Algebra Operations Of Single.Triangular Multiply In Place Method
Definition
Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics.SinglePrecision (in Extreme.Numerics.SinglePrecision.dll) Version: 8.1.4
Assembly: Extreme.Numerics.SinglePrecision (in Extreme.Numerics.SinglePrecision.dll) Version: 8.1.4
Overload List
Triangular | Product of a triangular matrix and a vector. |
Triangular | Product of a triangular matrix and a vector. |
Triangular | Product of a triangular and a general matrix. |
Triangular | Product of a triangular and a general matrix. |
TriangularMultiplyInPlace(MatrixTriangle, TransposeOperation, MatrixDiagonal, Int32, Array2D<Complex<Single>>, ArraySlice<Complex<Single>>)
Product of a triangular matrix and a vector.
public override void TriangularMultiplyInPlace(
MatrixTriangle storedTriangle,
TransposeOperation transA,
MatrixDiagonal diag,
int n,
Array2D<Complex<float>> a,
ArraySlice<Complex<float>> x
)
Parameters
- storedTriangle MatrixTriangle
- Specifies whether the matrix is an upper or lower triangular matrix.
- transA TransposeOperation
- Specifies the operation to be performed on the matrix a.
- diag MatrixDiagonal
- Specifies whether or not a is unit triangular.
- n Int32
- The number of rows and columns in the matrix a.
- a Array2D<Complex<Single>>
- Reference to the first element in a one-dimensional array that contains the elements of the matrix.
- x ArraySlice<Complex<Single>>
- A reference to a one-dimensional array containing the elements of the vector x. The elements of x are overwritten with the result.
Implements
ILinearAlgebraOperations<T>.TriangularMultiplyInPlace(MatrixTriangle, TransposeOperation, MatrixDiagonal, Int32, Array2D<T>, ArraySlice<T>)TriangularMultiplyInPlace(MatrixTriangle, TransposeOperation, MatrixDiagonal, Int32, Array2D<Single>, ArraySlice<Single>)
Product of a triangular matrix and a vector.
public override void TriangularMultiplyInPlace(
MatrixTriangle storedTriangle,
TransposeOperation transA,
MatrixDiagonal diag,
int n,
Array2D<float> a,
ArraySlice<float> x
)
Parameters
- storedTriangle MatrixTriangle
- Specifies whether the matrix is an upper or lower triangular matrix.
- transA TransposeOperation
- Specifies the operation to be performed on the matrix a.
- diag MatrixDiagonal
- Specifies whether or not a is unit triangular.
- n Int32
- The number of rows and columns in the matrix a.
- a Array2D<Single>
- Reference to the first element in a one-dimensional array that contains the elements of the matrix.
- x ArraySlice<Single>
- A reference to a one-dimensional array containing the elements of the vector x. The elements of x are overwritten with the result.
Implements
ILinearAlgebraOperations<T>.TriangularMultiplyInPlace(MatrixTriangle, TransposeOperation, MatrixDiagonal, Int32, Array2D<T>, ArraySlice<T>)TriangularMultiplyInPlace(MatrixOperationSide, MatrixTriangle, TransposeOperation, MatrixDiagonal, Int32, Int32, Complex<Single>, Array2D<Complex<Single>>, Array2D<Complex<Single>>)
Product of a triangular and a general matrix.
public override void TriangularMultiplyInPlace(
MatrixOperationSide side,
MatrixTriangle triangle,
TransposeOperation transA,
MatrixDiagonal diag,
int m,
int n,
Complex<float> alpha,
Array2D<Complex<float>> a,
Array2D<Complex<float>> b
)
Parameters
- side MatrixOperationSide
- Specifies on which side the triangular matrix a is to be multiplied.
- triangle MatrixTriangle
- Specifies whether the elements of the matrix a are stored in the upper or lower triangular part.
- transA TransposeOperation
- Specifies the operation to be performed on the matrix a.
- diag MatrixDiagonal
- Specifies whether or not a is unit triangular.
- m Int32
- The number of rows in the matrix a transformed as specified by transA, and the matrix b.
- n Int32
- The number of columns in the matrix b and the matrix b.
- alpha Complex<Single>
- The scalar used to multiply the matrix-vector product.
- a Array2D<Complex<Single>>
- Reference to the first element in a one-dimensional array that contains the elements of the first matrix.
- b Array2D<Complex<Single>>
- Reference to the first element in a one-dimensional array that contains the elements of the second matrix.
Implements
ILinearAlgebraOperations<T>.TriangularMultiplyInPlace(MatrixOperationSide, MatrixTriangle, TransposeOperation, MatrixDiagonal, Int32, Int32, T, Array2D<T>, Array2D<T>)TriangularMultiplyInPlace(MatrixOperationSide, MatrixTriangle, TransposeOperation, MatrixDiagonal, Int32, Int32, Single, Array2D<Single>, Array2D<Single>)
Product of a triangular and a general matrix.
public override void TriangularMultiplyInPlace(
MatrixOperationSide side,
MatrixTriangle storedTriangle,
TransposeOperation transA,
MatrixDiagonal diag,
int m,
int n,
float alpha,
Array2D<float> a,
Array2D<float> b
)
Parameters
- side MatrixOperationSide
- Specifies on which side the triangular matrix a is to be multiplied.
- storedTriangle MatrixTriangle
- Specifies whether the elements of the matrix a are stored in the upper or lower triangular part.
- transA TransposeOperation
- Specifies the operation to be performed on the matrix a.
- diag MatrixDiagonal
- Specifies whether or not a is unit triangular.
- m Int32
- The number of rows in the matrix a transformed as specified by transA, and the matrix b.
- n Int32
- The number of columns in the matrix b.
- alpha Single
- The scalar used to multiply the matrix-vector product.
- a Array2D<Single>
- Reference to the first element in a one-dimensional array that contains the elements of the first matrix.
- b Array2D<Single>
- Reference to the first element in a one-dimensional array that contains the elements of the second matrix.