vctr Derived Type

type, public :: vctr


Contents

Source Code


Components

Type Visibility Attributes Name Initial
integer, public :: cols
doubleprecision, public, allocatable :: im(:)
doubleprecision, public, allocatable :: re(:)
integer, public :: rows

Source Code

type vctr
   integer :: rows
   integer :: cols
   doubleprecision,allocatable :: re(:)
   doubleprecision,allocatable :: im(:)
endtype vctr