- 0
- 0
- 约3.5千字
- 约 85页
- 2017-08-19 发布于河南
- 举报
第三讲 MATLAB程序设计课件
第三讲 MATLAB程序设计;3.1 M文件; ; ; ;function r = rank(A,tol)
%RANK Matrix rank.
% RANK(A) provides an estimate of the number of linearly
% independent rows or columns of a matrix A.
% RANK(A,tol) is the number of singular values of A
% that are larger than tol.
% RANK(A) uses the default tol = max(size(A)) * eps(norm(A)).
%
% Class support for input A:
% float: double, single
% Copyright 1984-2004 The MathWorks, Inc.
% $Revision: 5.11.4.3 $ $Date: 2004/08/20 19:50:33 $
s = svd(A);
if nargin==1
tol = max(size(A)) * eps(max(s));
end
r = sum(s tol);;3.2 数据的输入输出; ;b =
您可能关注的文档
最近下载
- 标准图集-22G101-2现浇混凝土板式楼梯.pdf VIP
- 《3-02-03-01消防员职业标准》.pdf VIP
- 《NBT 31117-2017 海上风电场交流海底电缆选型敷设技术导则》(2026年)实施指南.pptx VIP
- NBT 31117-2017海上风电场交流海底电缆选型敷设技术导则专题研究报告.pptx VIP
- 家庭治疗家谱图绘制.pptx VIP
- 04S516 混凝土排水管道基础及接口.docx
- 2026年临床执业助理医师《药理学》测试卷(含答案).docx
- 李白按年龄顺序写的诗.docx VIP
- 1.数据宝藏在身边(课件)-四年级信息科技全一册(人教版2024).pptx VIP
- 二级医院呼吸与危重症医学科规范化建设标准.doc VIP
原创力文档

文档评论(0)