LinearMaps.jl icon indicating copy to clipboard operation
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...

Results 22 LinearMaps.jl issues
Sort by recently updated
recently updated
newest added

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...