size:

Syntax:	size ( A )

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

	SCALAR: size reports that a scalar is a 1-by-1 matrix. Size
		returns a matrix whose 1st element is the number of
		rows, and whose 2nd element is the number of columns. 
		
	MATRIX: size returns a matrix whose 1st element is the number
		of rows, and whose 2nd element is the number of columns. 

	STRING: size reports that a string is a 1-by-1 matrix.

	LIST: 	size returns the number of elements.

See Also: length, show
