Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(column), | intent(inout) | :: | this | |||
integer, | intent(in) | :: | i | |||
complex(kind=rk), | intent(in) | :: | val |
subroutine change_col_complex(this, i, val) class(column), intent(inout) :: this integer, intent(in) :: i complex(rk), intent(in) :: val if (this % dtype /= COMPLEX_NUM) error stop 'column is not of type complex' this % ccol(i) = val end subroutine change_col_complex