cell {matlab}R Documentation

MATLAB cell function

Description

Create cell array.

Usage

cell(...)

Arguments

...

numeric dimensions for the result

Value

Returns list consisting of empty matrices. Defaults to square if dimension argument resolves to a single value.

Author(s)

P. Roebuck proebuck1701@gmail.com

See Also

ones, zeros

Examples

cell(3)
cell(c(3, 3))			# same thing
cell(3, 3)			# same thing
cell(size(matrix(NA, 3, 3)))	# same thing

[Package matlab version 1.0.4.1 Index]