Clicky
Showing changes from revision #2 to #3:
(追記) Added (追記ここまで) | (削除) Removed (削除ここまで) | (削除) Chan (削除ここまで)(追記) ged (追記ここまで)
Returns the upper bounds of an array, or a single upper bound along the dim
dimension.
(削除) Fortran 95 and later, with (削除ここまで)(追記) Fortran 95 (追記ここまで)(追記) and later, with (追記ここまで)kind
argument(削除) Fortran (削除ここまで)(削除) 2003 (削除ここまで)(削除) and (削除ここまで)(削除) later (削除ここまで)(追記) Fortran 2003 (追記ここまで)(追記) and later (追記ここまで)
(削除) Inquiry function (削除ここまで)(追記) Inquiry function (追記ここまで)
result = ubound(array [, dim [, kind]])
array
- Shall be an array, of any type.dim
- (Optional) Shall be a scalar integer
.kind
- (Optional) An integer
initialization expression indicating the kind parameter of the result.The return value is of type integer
and of kind kind
. If kind
is absent, the return value is of default integer kind. If dim
is absent, the result is an array of the upper bounds of array
. If dim
is present, the result is a scalar corresponding to the upper bound of the array along that dimension. If array
is an expression rather than a whole array or array structure component, or if it has a zero extent along the relevant dimension, the upper bound is taken to be the number of elements along the relevant dimension.