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 534decb commit 0b157d1Copy full SHA for 0b157d1
src/factorizations/qr.jl
@@ -52,7 +52,7 @@ function MatrixAlgebraKit.initialize_output(
52
for bI in eachblockstoredindex(A)
53
row, col = Int.(Tuple(bI))
54
len = minimum(length, (brows[row], bcols[col]))
55
- r_axes[col] = bcols[col][Base.OneTo(len)]
+ r_axes[col] = brows[row][Base.OneTo(len)]
56
end
57
58
# fill in values for blocks that aren't present, pairing them in order of occurence
@@ -61,7 +61,7 @@ function MatrixAlgebraKit.initialize_output(
61
emptycols = setdiff(1:bn, bcolIs)
62
for (row, col) in zip(emptyrows, emptycols)
63
64
65
66
67
r_axis = mortar_axis(r_axes)
0 commit comments