MATLAB Function Reference | Search  Help Desk |
size | See Also |
get the size of the data set
Syntax
out=size(d)
out=size(d,n)
Description
out=size(d)
returns the dimensions (number of examples,
number of features) of the database d
.
out=size(d,n)
returns either the number of examples(n
= 1)
or the number of features(n
= 2) of the database d
.
get