append an entry to an allocatable array 1d with double precision If the array is too small, reallocate with double size
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=rk), | intent(inout), | allocatable | :: | Array(:,:) | array to append value to |
|
integer, | intent(in) | :: | Position1 | |||
integer, | intent(in) | :: | Position2 | |||
real(kind=rk), | intent(in) | :: | Value | value to append |
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
real(kind=rk), | private, | allocatable | :: | tempArray(:,:) | |||
integer, | private | :: | ArraySize1 | ||||
integer, | private | :: | ArraySize2 | ||||
integer, | private | :: | ierr | ||||
integer, | private | :: | NewSize1 | ||||
integer, | private | :: | NewSize2 | ||||
logical, | private | :: | changeSize | ||||
logical, | private | :: | sizeZero |