remap_bounds_2c Function

private function remap_bounds_2c(lb1, lb2, array) result(ptr)

FIXME : Add documentation

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: lb1
integer, intent(in) :: lb2
complex, intent(in), DIMENSION(lb1:, lb2:), TARGET :: array

Return Value complex, DIMENSION(:,:), POINTER


Contents

Source Code


Source Code

  FUNCTION remap_bounds_2c(lb1, lb2, array) RESULT(ptr)
    INTEGER, INTENT(IN)                               :: lb1,lb2
    complex, DIMENSION(lb1:, lb2:), INTENT(IN), TARGET :: array
    complex, DIMENSION(:,:), POINTER                  :: ptr
    ptr => array
  END FUNCTION remap_bounds_2c