QR Factorization of a 10 x 10 Matrix

1 回表示 (過去 30 日間)
Muhammad Abdullah
Muhammad Abdullah 2011 年 12 月 20 日
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 件のコメント
Walter Roberson
Walter Roberson 2011 年 12 月 20 日
Does it "solve" char(eye(10)) ?
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 Center および File ExchangeMathematics についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by