Learn R Programming

matlab (version 1.0.4.1)

size: MATLAB size function

Description

Provides dimensions of X.

Usage

size(X, dimen)

Value

Returns object of class size_t containing the dimensions of input argument X if invoked with a single argument. Returns integer value of specified dimension if invoked with two arguments. If dimen specifies a higher dimension than exists, returns 1 representing the singleton dimension.

Arguments

X

vector, matrix, or array object

dimen

numeric scalar specifies particular dimension

Author

P. Roebuck proebuck1701@gmail.com

Details

This is an S4 generic function. Vector will be treated as a single row matrix. Stored value is equivalent to dim.

Examples

Run this code
size(2:9)			# 1 8
size(matrix(1:8, 2, 4))		# 2 4
size(matrix(1:8, 2, 4), 2)	# 4
size(matrix(1:8, 2, 4), 3)	# 1

Run the code above in your browser using DataLab