作业帮 > 综合 > 作业

Matlab中 函数zeroS(1,8)

来源:学生作业帮 编辑:作业帮 分类:综合作业 时间:2024/05/09 07:03:55
Matlab中 函数zeroS(1,8)
zeros(1,8)是创建一个1行,8列的零矩阵
附:
zeros的用法
B = zeros(n) returns an n-by-n matrix of zeros.An error message appears if n is not a scalar.
B = zeros(m,n) or B = zeros([m n]) returns an m-by-n matrix of zeros.
B = zeros(m,n,p,...) or B = zeros([m n p ...]) returns an m-by-n-by-p-by-...array of zeros.