FFTAlgorithm Derived Type

type, public :: FFTAlgorithm


Inherits

type~~fftalgorithm~~InheritsGraph type~fftalgorithm FFTAlgorithm type~decimationmethod DecimationMethod type~fftalgorithm->type~decimationmethod decimation_method

Inherited by

type~~fftalgorithm~~InheritedByGraph type~fftalgorithm FFTAlgorithm type~fftplan FFTPlan type~fftplan->type~fftalgorithm algorithm type~fourier_transform Fourier_Transform type~fourier_transform->type~fftplan fft_plan

Components

Type Visibility Attributes Name Initial
integer(kind=isp), public :: id
character(len=20), public :: name
type(DecimationMethod), public :: decimation_method

Source Code

    type :: FFTAlgorithm
        integer(isp) :: id
        character(len=20) :: name
        type(DecimationMethod) :: decimation_method
    end type FFTAlgorithm