dense Interface

public interface dense

Cnvert a matrix of type Poisson2D to its dense representation as a standard rank-2 array.

Syntax

   B = dense(A)

Arguments

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

  • B : Rank-2 real array corresponding to the dense representation of A.


Functions

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

Arguments

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

Input matrix.

Return Value real(kind=dp), allocatable, (:,:)

Dense representation.