get_single_col_complex Function

private pure function get_single_col_complex(this, i) result(val)

Type Bound

column

Arguments

Type IntentOptional Attributes Name
class(column), intent(in) :: this
integer, intent(in) :: i

Return Value complex(kind=rk)


Source Code

    pure function get_single_col_complex(this, i) result(val)
        class(column), intent(in) :: this
        integer, intent(in) :: i
        complex(rk) :: val

        if (this % dtype /= COMPLEX_NUM) error stop 'column is not of type complex'

        if (i > this % n) error stop 'out of bounds attempt on data column'

        val = this % ccol(i)

    end function get_single_col_complex