Sheehan Olver

Results 1181 comments of Sheehan Olver

I can’t imagine anyone cares either way. Any Julia v1.6 users can still use ForwardDiff v0.x, if they are happy with old versions of Julia they are surely happy with...

Yes I agree that’s a serious problem. Often trying to use outdated code fails even with manifests because it can figure out the right versionszzz But I think that’s a...

Adding banded matrices as a dependency won’t work we could add a new type called ` OffDiagonal `

Note ` layout_getindex(D, :, :) ` will produce a BandedMatrix

I suspect the code is still what @jiahao wrote a decade ago.... so I don't know if anyone will remember why

Please include the full error message, usually I can debug it

I doubt there is a reason for this. Perhaps we were thinking of offset axes?

I think broadcasting is the right approach. I believe if there's an ambiguity in broadcasting it falls back to the default behaviour. That is: we should overload `BroadcastStyle` and do...

Note `Symmetric` addition is handled at the `+`: ```julia julia> S .+ S 5×5 Matrix{Float64}: -1.90614 2.27016 -0.412719 0.331858 3.62299 2.27016 -1.48817 0.456745 2.18015 0.599337 -0.412719 0.456745 4.30436 -2.37771 0.431586...

``` Not yet! But hopefully at some point. ``` > On 23 Aug 2015, at 5:44 pm, stla [email protected] wrote: > > Hello, > Is (will) there a way to...