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
Higher dimensional multiplication wouldn't run into this problem because there isn't a method between ScalMat and AbstractArray. Therefore, an easy fix is, as suggested, implementing two extra methods in FillArraysPDMatsExt.jl. Appending the following code to the end of FillArraysPDMatsExt.jl should work.
using FillArrays: mult_zeros, AbstractZeros
Base.:*(a::ScalMat, b::AbstractZeros{T, 1}where T) =mult_zeros(a, b)
Base.:*(a::ScalMat, b::AbstractZeros{T, 2}where T) =mult_zeros(a, b)
The text was updated successfully, but these errors were encountered:
The following code runs into errors.
Similarly, the matrix multiplication also fails.
Higher dimensional multiplication wouldn't run into this problem because there isn't a method between
ScalMat
andAbstractArray
. Therefore, an easy fix is, as suggested, implementing two extra methods in FillArraysPDMatsExt.jl. Appending the following code to the end ofFillArraysPDMatsExt.jl
should work.The text was updated successfully, but these errors were encountered: