Triplet_c Derived Type

type, public :: Triplet_c

A data type for a triplet of integer, integer, complex. As this is related to matrix multiplication, the referencing indices are rows and columns.


Contents


Components

TypeVisibility AttributesNameInitial
integer(kind=c_int), public :: index_column

column value.

integer(kind=c_int), public :: index_row

row value.

complex(kind=NTCOMPLEX), public :: point_value

actual value at those indices.