size:

Syntax:	size ( A )

Description:
	
	The size function returns the size of the argument. 

      	NUMERIC: size returns a matrix whose 1st element is the number
		 of rows, and whose 2nd element is the number of columns.

	STRING:  size returns a matrix whose 1st element is the number
		 of rows, and whose 2nd element is the number of
		 columns. If the length of a particular string is
		 desired, then the length function must be used.

	LIST: 	 size returns the number of elements in the list.

See Also: length, show
