ILinearEquationSolverTSolveVectorT(IROMatrixDouble, IReadOnlyListDouble, FuncInt32, VectorT) Method |
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax VectorT Solve<VectorT>(
IROMatrix<double> A,
IReadOnlyList<double> b,
Func<int, VectorT> vectorCreation
)
where VectorT : Object, IVector<double>
Parameters
- A IROMatrixDouble
- The matrix.
- b IReadOnlyListDouble
- The right hand vector.
- vectorCreation FuncInt32, VectorT
- Function to create a new vector. Argument is the length of the vector.
Type Parameters
- VectorT
Return Value
VectorTThe solution x of the equation A*x==b.
See Also