You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, there's no convenient interpolation integration for AxisKeys, as far as I know. The readme says
There is no interaction with interpolation, although this seems a natural fit. Why doesn't A(:left, 13.7, :) interpolate along continuous dimensions?
I think it's best to keep basic lookup like A(:left, 13.7, :) to only retrieve existing values, as it currently does.
But something more explicit could be very convenient and composable: maybe, A(:left, Interp(13.7), :)? This generalizes to A(:left, Interp(13.7, order=2), :), for example.
Such an interface looks general and intuitive. Do you think it would make sense, or there are better alternatives?
The text was updated successfully, but these errors were encountered:
Currently, there's no convenient interpolation integration for AxisKeys, as far as I know. The readme says
I think it's best to keep basic lookup like
A(:left, 13.7, :)
to only retrieve existing values, as it currently does.But something more explicit could be very convenient and composable: maybe,
A(:left, Interp(13.7), :)
? This generalizes toA(:left, Interp(13.7, order=2), :)
, for example.Such an interface looks general and intuitive. Do you think it would make sense, or there are better alternatives?
The text was updated successfully, but these errors were encountered: