transpose Interface

public interface transpose

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

Syntax

   B = transpose(A)

Arguments

  • A : Matrix of Toeplitz 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 Toeplitz matrix.

Arguments

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

Input matrix.

Return Value type(Toeplitz)

Transpose of the matrix.