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各維的尺寸, 并存