Predefined Functions - ubound
Description: The ubound function is used to returns the array dimension. The first argument to this function is an array, the second argument is an integer specifying the dimension (0,1,2,...), whose size you'd like to know.
Examples: array img[4] of real; img = array(30,40,10,15);Then:
|