Defines how to divide LocalProfiles types by a scalar
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(LocalProfiles), | intent(in) | :: | p1 | |||
real(kind=Float64), | intent(in) | :: | real_scalar |
function lps_divide(p1, real_scalar) result (p3)
!+ Defines how to divide [[LocalProfiles]] types by a scalar
type(LocalProfiles), intent(in) :: p1
real(Float64), intent(in) :: real_scalar
type(LocalProfiles) :: p3
p3 = p1*(1.d0/real_scalar)
end function lps_divide