reg_type Derived Type

type, public :: reg_type

FIXME : Add documentation


Contents

Source Code


Components

Type Visibility Attributes Name Initial
integer, public :: n = 0
real, public :: xy = 0.
real, public :: xsum = 0.
real, public :: ysum = 0.
real, public :: x2sum = 0.
real, public :: a
real, public :: b

Source Code

  type :: reg_type
    integer :: n = 0
    real :: xy = 0.
    real :: xsum = 0.
    real :: ysum = 0.
    real :: x2sum = 0.
    real :: a, b
  end type reg_type