1.the physical magnitude of something (how big it is);
a wolf is about the size of a large dog
2.the property resulting from being one of a series of graduated measurements (as of clothing);
he wears a size 13 shoe
3.any glutinous material used to fill pores in surfaces or to stiffen fabrics;
size gives body to a fabric
4.the actual state of affairs;
that's the size of the situation
5.a large magnitude;
he blanched when he saw the size of the bill
6.(used in combination) sized;
the economy-size package
1.cover or stiffen or glaze a porous material with size or sizing (a glutinous substance)
2.sort according to size
3.make to a size; bring to a suitable size
MATLAB函数size简介 函数功能:返回数组的尺寸 语法格式: d = size(X) 返回数组X每一维的大小,其中d是一个向量,元素个数为ndims(X)。如果X是一个标量(在Matlab也就是一个1行乘以1列的数组),size(X)将返回[1 1]。 [m,n] = size(X) 返回矩阵X的尺寸信息, 并存储在m、n中。其中m中存储的是行数,n中存储的是列数。 m = size(X,dim) 返回X的第dim维的尺寸。 [d1,d2,d3,...,dn] = size(X), 当n大于1时, 返回X各维的尺寸, 并存