Exemple #1
0
bool MatrixEquation::Solve(Vector& x) const
{
  return Solve_LU(x);
}
Exemple #2
0
// Resuelve el sistema Ax=b usando factorizacion LU
void Sistema_Lineal::Resuelve_Factorizacion_LU(Matriz *a, Vector *x, Vector *b)
{
   Factoriza_LU(a);
   Solve_LU(a,x,b);
}