![]() |
(git:b77b4be)
|
Public Member Functions | |
subroutine | allocate_1d (array, shape_spec, source, order) |
Allocate array according to shape_spec. Possibly assign array from source. | |
subroutine | allocate_2d (array, shape_spec, source, order) |
Allocate array according to shape_spec. Possibly assign array from source. | |
subroutine | allocate_3d (array, shape_spec, source, order) |
Allocate array according to shape_spec. Possibly assign array from source. | |
subroutine | allocate_4d (array, shape_spec, source, order) |
Allocate array according to shape_spec. Possibly assign array from source. | |
subroutine | allocate_5d (array, shape_spec, source, order) |
Allocate array according to shape_spec. Possibly assign array from source. | |
subroutine | allocate_6d (array, shape_spec, source, order) |
Allocate array according to shape_spec. Possibly assign array from source. | |
subroutine | allocate_7d (array, shape_spec, source, order) |
Allocate array according to shape_spec. Possibly assign array from source. | |
Definition at line 26 of file dbt_allocate_wrap.F.
subroutine dbt_allocate_wrap::allocate_any::allocate_1d | ( | real(dp), dimension(:), intent(out), allocatable | array, |
integer, dimension(1), intent(in), optional | shape_spec, | ||
real(dp), dimension(:), intent(in), optional | source, | ||
integer, dimension(1), intent(in), optional | order | ||
) |
Allocate array according to shape_spec. Possibly assign array from source.
array | target array. |
shape_spec | shape of array to be allocated. If not specified, it is derived from source. |
source | source array to be copied to target array, must have same rank as target array. |
order | in which order to copy source to array (same convention as RESHAPE intrinsic). |
Definition at line 48 of file dbt_allocate_wrap.F.
subroutine dbt_allocate_wrap::allocate_any::allocate_2d | ( | real(dp), dimension(:,:), intent(out), allocatable | array, |
integer, dimension(2), intent(in), optional | shape_spec, | ||
real(dp), dimension(:,:), intent(in), optional | source, | ||
integer, dimension(2), intent(in), optional | order | ||
) |
Allocate array according to shape_spec. Possibly assign array from source.
array | target array. |
shape_spec | shape of array to be allocated. If not specified, it is derived from source. |
source | source array to be copied to target array, must have same rank as target array. |
order | in which order to copy source to array (same convention as RESHAPE intrinsic). |
Definition at line 93 of file dbt_allocate_wrap.F.
subroutine dbt_allocate_wrap::allocate_any::allocate_3d | ( | real(dp), dimension(:,:,:), intent(out), allocatable | array, |
integer, dimension(3), intent(in), optional | shape_spec, | ||
real(dp), dimension(:,:,:), intent(in), optional | source, | ||
integer, dimension(3), intent(in), optional | order | ||
) |
Allocate array according to shape_spec. Possibly assign array from source.
array | target array. |
shape_spec | shape of array to be allocated. If not specified, it is derived from source. |
source | source array to be copied to target array, must have same rank as target array. |
order | in which order to copy source to array (same convention as RESHAPE intrinsic). |
Definition at line 138 of file dbt_allocate_wrap.F.
subroutine dbt_allocate_wrap::allocate_any::allocate_4d | ( | real(dp), dimension(:,:,:,:), intent(out), allocatable | array, |
integer, dimension(4), intent(in), optional | shape_spec, | ||
real(dp), dimension(:,:,:,:), intent(in), optional | source, | ||
integer, dimension(4), intent(in), optional | order | ||
) |
Allocate array according to shape_spec. Possibly assign array from source.
array | target array. |
shape_spec | shape of array to be allocated. If not specified, it is derived from source. |
source | source array to be copied to target array, must have same rank as target array. |
order | in which order to copy source to array (same convention as RESHAPE intrinsic). |
Definition at line 183 of file dbt_allocate_wrap.F.
subroutine dbt_allocate_wrap::allocate_any::allocate_5d | ( | real(dp), dimension(:,:,:,:,:), intent(out), allocatable | array, |
integer, dimension(5), intent(in), optional | shape_spec, | ||
real(dp), dimension(:,:,:,:,:), intent(in), optional | source, | ||
integer, dimension(5), intent(in), optional | order | ||
) |
Allocate array according to shape_spec. Possibly assign array from source.
array | target array. |
shape_spec | shape of array to be allocated. If not specified, it is derived from source. |
source | source array to be copied to target array, must have same rank as target array. |
order | in which order to copy source to array (same convention as RESHAPE intrinsic). |
Definition at line 228 of file dbt_allocate_wrap.F.
subroutine dbt_allocate_wrap::allocate_any::allocate_6d | ( | real(dp), dimension(:,:,:,:,:,:), intent(out), allocatable | array, |
integer, dimension(6), intent(in), optional | shape_spec, | ||
real(dp), dimension(:,:,:,:,:,:), intent(in), optional | source, | ||
integer, dimension(6), intent(in), optional | order | ||
) |
Allocate array according to shape_spec. Possibly assign array from source.
array | target array. |
shape_spec | shape of array to be allocated. If not specified, it is derived from source. |
source | source array to be copied to target array, must have same rank as target array. |
order | in which order to copy source to array (same convention as RESHAPE intrinsic). |
Definition at line 273 of file dbt_allocate_wrap.F.
subroutine dbt_allocate_wrap::allocate_any::allocate_7d | ( | real(dp), dimension(:,:,:,:,:,:,:), intent(out), allocatable | array, |
integer, dimension(7), intent(in), optional | shape_spec, | ||
real(dp), dimension(:,:,:,:,:,:,:), intent(in), optional | source, | ||
integer, dimension(7), intent(in), optional | order | ||
) |
Allocate array according to shape_spec. Possibly assign array from source.
array | target array. |
shape_spec | shape of array to be allocated. If not specified, it is derived from source. |
source | source array to be copied to target array, must have same rank as target array. |
order | in which order to copy source to array (same convention as RESHAPE intrinsic). |
Definition at line 318 of file dbt_allocate_wrap.F.