gauss_solve Function

public function gauss_solve(A, b) result(x)

Computes the solution of the system: where A is a non-singular matrix.

Arguments

Type IntentOptional Attributes Name
real, intent(in) :: A(:,:)

Non-singular matrix

real, intent(in) :: b(:)

Right hand side vector

Return Value real, (size(A,2))

Solution vector x


Calls

proc~~gauss_solve~~CallsGraph proc~gauss_solve gauss_solve proc~make_u make_U proc~gauss_solve->proc~make_u proc~solve_u solve_U proc~gauss_solve->proc~solve_u

Called by

proc~~gauss_solve~~CalledByGraph proc~gauss_solve gauss_solve program~test_linear_solvers test_linear_solvers program~test_linear_solvers->proc~gauss_solve