请选择 进入手机版 | 继续访问电脑版
楼主: Nicolle
3996 22

[Matlab-Based eBook]Introduction to Linear Algebra, Fourth Edition [推广有奖]

巨擘

0%

还不是VIP/贵宾

-

TA的文库  其他...

Python(Must-Read Books)

SAS Programming

Must-Read Books

威望
16
论坛币
12402323 个
通用积分
1620.8015
学术水平
3305 点
热心指数
3329 点
信用等级
3095 点
经验
477211 点
帖子
23879
精华
91
在线时间
9878 小时
注册时间
2005-4-23
最后登录
2022-3-6

Nicolle 学生认证  发表于 2016-2-19 10:40:37 |显示全部楼层 |坛友微信交流群
提示: 作者被禁止或删除 内容自动屏蔽

本帖被以下文库推荐

smartlife 在职认证  发表于 2016-2-19 10:40:38 |显示全部楼层 |坛友微信交流群
我有这书, 可是, 传不上来,说是论坛有。给你个链接, 自己下载巴:


已有 1 人评分经验 论坛币 收起 理由
Nicolle + 100 + 100 精彩帖子

总评分: 经验 + 100  论坛币 + 100   查看全部评分

使用道具

Nicolle 学生认证  发表于 2016-2-19 10:41:11 |显示全部楼层 |坛友微信交流群
提示: 作者被禁止或删除 内容自动屏蔽

使用道具

Nicolle 学生认证  发表于 2016-2-19 10:41:49 |显示全部楼层 |坛友微信交流群
提示: 作者被禁止或删除 内容自动屏蔽

使用道具

  1. function [E, R] = elim(A)

  2. % elim  E*A = R factorization.
  3. %
  4. % E = elim(A) returns the elimination matrix E
  5. % that gives the reduced row echelon form E*A = R.
  6. % If A is square and invertible, then E = inv(A).
  7. %
  8. % [E, R] = elim(A) returns the elimination matrix E
  9. % and the reduced row echelon form R.
  10. %
  11. % See also lu, slu, splu, plu.

  12. [m, n] = size(A);
  13. I = eye(m);
  14. %
  15. % Elimination on the augmented matrix [A I] yields [R E].
  16. %
  17. RE = rref([A I]);
  18. R = RE(:, 1:n);
  19. E = RE(:, (n+1):(m+n));
复制代码

使用道具

Iris2126 发表于 2016-2-19 15:08:58 |显示全部楼层 |坛友微信交流群
  1. function [k, p] = findpiv(A, k, p, tol)

  2. % findpiv  Used by plu to find a pivot for Gaussian elimination.
  3. %
  4. % [r, p] = findpiv(A(k:m, p:n), k, p, tol) finds the first element in
  5. % the specified submatrix which is larger than tol in absolute value.
  6. % It returns indices r and p so that A(r, p) is the pivot.

  7. [m,  n] = size(A);
  8. r = find(abs(A(:)) > tol);
  9. if isempty(r), return, end
  10. %
  11. r = r(1);
  12. j = fix((r-1)/m)+1;
  13. p = p+j-1;
  14. k = k+r-(j-1)*m-1;
复制代码

使用道具

Nicolle 学生认证  发表于 2016-3-25 11:21:12 |显示全部楼层 |坛友微信交流群
提示: 作者被禁止或删除 内容自动屏蔽

使用道具

shkstar 发表于 2016-8-6 00:25:21 |显示全部楼层 |坛友微信交流群
CCCCCCCCCCCCCC

使用道具

shkstar 发表于 2016-8-6 00:25:45 |显示全部楼层 |坛友微信交流群
CCCCCCCCCCCCCC

使用道具

眼角的伤痕 学生认证  发表于 2017-1-6 06:51:29 |显示全部楼层 |坛友微信交流群
thanks useful

使用道具

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加好友,备注jltj
拉您入交流群

京ICP备16021002-2号 京B2-20170662号 京公网安备 11010802022788号 论坛法律顾问:王进律师 知识产权保护声明   免责及隐私声明

GMT+8, 2024-4-16 14:28