BandedMatrices.jl
BandedMatrices.jl copied to clipboard
Tag 1.0
I think now that the more experimental lazy-banded matrix support has been moved out the API should be pretty stable. Some possible changes we might want to make first:
- Rename
brand. Actually, I might just move this out into LazyBandedMatrices.jl since its mostly used for testing. I'm thinking a better syntax may beBandedMatrix(Rand(10,10), (1,1))whereRandcorresponds to a lazy random matrix. - Rename
_BandedMatrix. The logic on this name is to distinguish fromBandedMatrix(::AbstractMatrix)which converts a general matrix to be banded, and that the details of storage is an "implementation" detail.