Hello The following excerpt from LabView's help seems to answer your question: The vi called Array Size in the LV array palette should do this job:
Array can be an n-dimensional array of any type. size(s) is a 32-bit integer if array is one-dimensional (1D). If array is multidimensional, the returned value is a 1D array in which each element is a 32-bit integer representing the number of elements in the corresponding dimension of array. For example, if you wire a 3D 2x5x3 array to array, the function returns a three-element array containing [2,5,3]. -------- In a 2D array the first number is the Row, the second number is the column. I think the best way is to experiment by writing a little LV code, where you build an array of constants and use the Array Size vi to read its output and see what it puts out. Happy G Coding Khan Kabir Xerox
