LinearMaps.jl
LinearMaps.jl copied to clipboard
A Julia package for defining and working with linear maps, also known as linear transformations or linear operators acting on vectors. The only requirement for a LinearMap is that it can act on a vect...
Hello, I am trying to use the package manager to obtain the latest version of LinearMaps but am running into an issue with precompile. This is the error ```julia julia>...
If we set the trait FiveArg(), is it also necessary to implement the three argument `mul!`? Something like: ``` LinearMaps.MulStyle(A::MyMap) = FiveArg() function LinearMaps._unsafe_mul!(y, A::MyMap, x::AbstractVector, α, β) ... end...