QR Factorization of a 10 x 10 Matrix

1 visualizzazione (ultimi 30 giorni)
Muhammad Abdullah
Muhammad Abdullah il 20 Dic 2011
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.

Risposte (1)

Jan
Jan il 20 Dic 2011
X = rand(10, 10);
[Q, R] = qr(X);
  4 Commenti
Walter Roberson
Walter Roberson il 20 Dic 2011
Does it "solve" char(eye(10)) ?
Jan
Jan il 20 Dic 2011
Yes. As usual in mathematics, the canny addition of a zero allows a solution:
[Q, R] = qr(char(eye(10)) + 0)

Accedi per commentare.

Categorie

Scopri di più su Mathematics in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by