摘要: 矩阵相关: a = [1 2;3 4] %生成矩阵的普通方法 b = 1:0.2:2 %一维矩阵:0.2是间隔 c = zeros(2,3) %生成全0矩阵 d = ones(3,4) %生成全1矩阵 e = rand(4,5) %矩阵元素随机生成,全部为正数 f = rands(4,4) %矩阵元 阅读全文
posted @ 2020-11-10 17:03 玛吉 阅读(91) 评论(0) 推荐(0) 编辑