第三讲 MATLAB程序设计课件.pptVIP

  • 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 =

文档评论(0)

1亿VIP精品文档

相关文档