matlab ndims 函数 与 expand 函数

ndims 函数:

返回矩阵的维数。

expand 函数:

A = [1 2; 3 4]; % 2x2
SZ = [6 5];
B = expand(A,SZ)  % Creates a 12x10 array.


B =


     1     1     1     1     1     2     2     2     2     2
     1     1     1     1     1     2     2     2     2     2
     1     1     1     1     1     2     2     2     2     2
     1     1     1     1     1     2     2     2  

你可能感兴趣的:(matlab)