MatrixMathSingularValueDecompositionSolve Method |
Solves the equation A x = B and returns x.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static void Solve(
IROMatrix<double> A,
IReadOnlyList<double> B,
IVector<double> x,
ref Object tempstorage
)
Parameters
- A IROMatrixDouble
- The matrix.
- B IReadOnlyListDouble
- The right side.
- x IVectorDouble
- On return, contains the solution vector.
- tempstorage Object
- On return, holds the allocated temporary storage. You can use this
in subsequent calls to Solve with the same dimensions of the matrix.
See Also