det Interface

public interface det

This interface overloads the det interface from stdlib_linag to compute the determinant where is of type Bidiagonal.

Syntax

   d = det(A)

Arguments

  • A : Matrix of Bidiagonal type. It is in an intent(in) argument.

  • d : Determinant of the matrix.


Functions

private pure module function det_rdp(A) result(d)

Compute the determinant of a Bidiagonal matrix.

Arguments

Type IntentOptional Attributes Name
type(Bidiagonal), intent(in) :: A

Input matrix.

Return Value real(kind=dp)

Determinant of the matrix.