Zachary P Christensen
Zachary P Christensen
Initial effort to get rid of our own internal definitions of `ArrayInterface.to_index` using new `AxisIndex` type for overloading with any array type (e.g., `Base.to_index(::Any, ::AxisIndex)`. `AxisIndex` contains all the information...
We've been informally talking about moving stuff to Base. I figured we should actually have a record of what has been attempted and things we think are stable enough to...
Currently `rawview` doesn't returns a `MappedArray` that doesn't have access to some of AxisArray's methods. ```julia using TestImages mri = testimage("mri"); axisnames(rawview(channelview(mri))) ``` I would prefer that axis information isn't...
I was trying to put something together for Accessors.jl and found that some changes here can really improve performance downstream. The strategy used here is to only depend on `PropertyNames{fieldnames(obj)}()`...
Register
@JuliaRegistrator register
Roadmap
## General Approach In the absence of a formal write up (which I will upload shortly before JuliaCon) the strategy for development throughout this org is this: Write the code...
Use the new "Extended Documentation" feature for properties.
There are several packages that I think belong in JuliaNeuroscience. Some of these are just ideas and others I've been waiting for NeuroCore.jl to get in place first. All names...
Right now there's just `CoordinateSystem`. The following functions and types still need to be created. 1. A single coordinate point. 2. A labelled set of coordinate points 3. A conversion...
Her I've implemented what I think are some of the more straightforward non-mutating counterparts to mutating methods. I borrowed liberally from @tkf's PR #33495 to get `Base.setindex` working here. Should...