Tiles the input array n
times. Returns a tiled array that has rank equal
to size(shape(array))+1
and that has values equal to values of array
,
repeated n
times. This version is for 1-d input array of integers. This
procedure is overloaded by the generic procedure tile
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=ik), | intent(in), | dimension(:) | :: | array | Input array |
|
integer(kind=ik), | intent(in) | :: | n | Number of times to copy input array |
Tiles the input array n
times. Returns a tiled array that has rank equal
to size(shape(array))+1
and that has values equal to values of array
,
repeated n
times. This version is for 1-d input array of reals. This
procedure is overloaded by the generic procedure tile
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=rk), | intent(in), | dimension(:) | :: | array | Input array |
|
integer(kind=ik), | intent(in) | :: | n | Number of times to copy input array |
Tiles the input array n
times. Returns a tiled array that has rank equal
to size(shape(array))+1
and that has values equal to values of array
,
repeated n
times. This version is for 2-d input array of integers. This
procedure is overloaded by the generic procedure tile
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=ik), | intent(in), | dimension(:,:) | :: | array | Input array |
|
integer(kind=ik), | intent(in) | :: | n | Number of times to copy input array |
Tiles the input array n
times. Returns a tiled array that has rank equal
to size(shape(array))+1
and that has values equal to values of array
,
repeated n
times. This version is for 2-d input array of reals. This
procedure is overloaded by the generic procedure tile
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=rk), | intent(in), | dimension(:,:) | :: | array | Input array |
|
integer(kind=ik), | intent(in) | :: | n | Number of times to copy input array |
Tiles the input array n
times. Returns a tiled array that has rank equal
to size(shape(array))+1
and that has values equal to values of array
,
repeated n
times. This version is for 3-d input array of integers. This
procedure is overloaded by the generic procedure tile
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=ik), | intent(in), | dimension(:,:,:) | :: | array | Input array |
|
integer(kind=ik), | intent(in) | :: | n | Number of times to copy input array |
Tiles the input array n
times. Returns a tiled array that has rank equal
to size(shape(array))+1
and that has values equal to values of array
,
repeated n
times. This version is for 3-d input array of reals. This
procedure is overloaded by the generic procedure tile
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=rk), | intent(in), | dimension(:,:,:) | :: | array | Input array |
|
integer(kind=ik), | intent(in) | :: | n | Number of times to copy input array |