You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if side == 'L' && m != mA
throw(DimensionMismatch("for a left-sided multiplication, the first dimension of C, $m, must equal the second dimension of A, $mA"))
end
if side == 'R' && n != mA
throw(DimensionMismatch("for a right-sided multiplication, the second dimension of C, $m, must equal the second dimension of A, $mA"))
end
should be
if side == 'L' && m != mA
throw(DimensionMismatch("for a left-sided multiplication, the first dimension of C, $m, must equal the first dimension of A, $mA"))
end
if side == 'R' && n != mA
throw(DimensionMismatch("for a right-sided multiplication, the second dimension of C, $m, must equal the first dimension of A, $mA"))
end
Similar modifications are necessary also in the function Base.resize!(ormws::QROrmWs, side::AbstractChar, trans::AbstractChar, ...
and also in the original LAPACK wrapper for ormqr!.
The text was updated successfully, but these errors were encountered:
I think the following lines in
ormqr!
should be
Similar modifications are necessary also in the function
Base.resize!(ormws::QROrmWs, side::AbstractChar, trans::AbstractChar, ...
and also in the original LAPACK wrapper for
ormqr!
.The text was updated successfully, but these errors were encountered: