Resizes an array component of type character string. nnew = 0 will deallocate.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(len=STRMAX), | intent(inout), | dimension(:), allocatable | :: | arr | Array to resize |
|
| integer(kind=I4B), | intent(in) | :: | nnew | New size |
Resizes an array component of double precision type. Passing nnew = 0 will deallocate.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=DP), | intent(inout), | dimension(:), allocatable | :: | arr | Array to resize |
|
| integer(kind=I4B), | intent(in) | :: | nnew | New size |
Resizes an array component of double precision vectors of size (NDIM, n). Passing nnew = 0 will deallocate.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=DP), | intent(inout), | dimension(:,:), allocatable | :: | arr | Array to resize |
|
| integer(kind=I4B), | intent(in) | :: | nnew | New size |
Resizes an array component of integer type. Passing nnew = 0 will deallocate.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| integer(kind=I4B), | intent(inout), | dimension(:), allocatable | :: | arr | Array to resize |
|
| integer(kind=I4B), | intent(in) | :: | nnew | New size |
Resizes an array component of logical type. Passing nnew = 0 will deallocate.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| logical, | intent(inout), | dimension(:), allocatable | :: | arr | Array to resize |
|
| integer(kind=I4B), | intent(in) | :: | nnew | New size |