matlab编程中,常见函数调用(size,max,chol,prod,sqrt,min,repmat,timescell,sum,zeros,diag,length)
cellZ=Cell(K,1):产生K行1列的空矩阵。Z=cell(2);产生2行2列的空矩阵。Z=cell(3,4,2):产生行数为3,列数为4,高为2的3D空矩阵。zerosZ=zeros(K,1):产生K行1列的零矩阵。Z=zeros(4):产生4行4列的零矩阵。Z=zeros(3,4,2):产生行数为3,列数为4,高为2的3D零矩阵。diag()D=diag(v);假设v为1行3列的向量,