transpose Interface

public interface transpose

This interface overloads the Fortran intrinsic procedure to define the transpose of a Bidiagonal matrix.

Syntax

   B = transpose(A)

Arguments

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

  • B : Resulting transposed matrix. It is of the same type as A.


Functions

private pure module function transpose_rdp(A) result(B)

Utility function to compute the transpose of a Bidiagonal matrix.

Arguments

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

Input matrix.

Return Value type(Bidiagonal)

Transpose of the matrix.