BandedMatrices.jl
BandedMatrices.jl copied to clipboard
A Julia package for representing banded matrices
ERROR: MethodError: \(::SparseMatrixCSC{Float64, Int64}, ::BandedMatrix{Float64, Matrix{Float64}, Base.OneTo{Int64}}) is ambiguous.
```julia julia> versioninfo() Julia Version 1.10.2 Commit bd47eca2c8a (2024-03-01 10:14 UTC) Build Info: Official https://julialang.org/ release Platform Info: OS: macOS (x86_64-apple-darwin22.4.0) CPU: 36 × Intel(R) Xeon(R) W-2191B CPU @ 2.30GHz...
falls back to dense comparison ```julia julia> A = brand(100,100,0,0); julia> @btime A==A 25.000 μs (0 allocations: 0 bytes) true julia> A = brand(1000,1000,0,0); julia> @btime A==A 2.409 ms (0...