We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bd0578 commit b270613Copy full SHA for b270613
src/Math-Matrix/PMQRDecomposition.class.st
@@ -79,13 +79,13 @@ PMQRDecomposition >> decomposeWithPivot [
79
rank := 0.
80
identityMatrix := PMSymmetricMatrix identity: colSize.
81
[
82
- | householderMatrix |
+ | householderMatrix columnVectorFromRMatrix |
83
rank := rank + 1.
84
pivot at: rank put: mx.
85
r swapColumn: rank withColumn: mx.
86
vectorOfNormSquareds swap: rank with: mx.
87
- householderVector := (r columnVectorAt: rank size: colSize)
88
- householder.
+ columnVectorFromRMatrix := r columnVectorAt: rank size: colSize.
+ householderVector := columnVectorFromRMatrix householder.
89
v := (PMVector zeros: rank - 1) , (householderVector at: 2).
90
householderMatrix := identityMatrix
91
-
0 commit comments