QR Factorization of a 10 x 10 Matrix

1 次查看(过去 30 天)
I need to Solve a 10 x 10 Matrix using QR factorization. please Write a MATLAB program for calculating the QR factorization of any 10 × 10 matrix.

回答(1 个)

Jan
Jan 2011-12-20
X = rand(10, 10);
[Q, R] = qr(X);
  4 个评论
Jan
Jan 2011-12-20
Yes. As usual in mathematics, the canny addition of a zero allows a solution:
[Q, R] = qr(char(eye(10)) + 0)

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Mathematics 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by