Set up the clip dictionary
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=real32), | intent(in), | optional | :: | clip_min |
Minimum, maximum, and norm values for clipping |
|
| real(kind=real32), | intent(in), | optional | :: | clip_max |
Minimum, maximum, and norm values for clipping |
|
| real(kind=real32), | intent(in), | optional | :: | clip_norm |
Minimum, maximum, and norm values for clipping |
Instance of the clip type
module function clip_setup( & clip_min, clip_max, clip_norm) result(clip) !! Set up the clip dictionary real(real32), optional, intent(in) :: clip_min, clip_max, clip_norm !! Minimum, maximum, and norm values for clipping type(clip_type) :: clip !! Clip dictionary end function clip_setup