-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
matrix multiplication not supported? #91
Comments
A pull request would be welcome. The easy version is to specialize it for two OffsetArray inputs with parents that have 1-based indexing, in which case you can strip the wrappers, call the ordinary routines, and then re-wrap. The more ambitious version is to get this working generally in Julia itself. There are other packages that introduce arrays with unconventional axes, so it won't be a perfect solution unless we make it more general. |
I'm not ready to tackle Base yet, but I'll look into making a PR for this here. A question about semantics arises, similar to #45. I see three options for
In all three cases, the result would be an Option 2 is probably just as safe as option 1; it effectively "promotes" the non- The tempting motivation for option 3 is that sometimes I just want to apply a matrix What do you think? After arguing with myself, I'm inclined to pursue option 2. |
I like option 2 also. You can manually call |
The text was updated successfully, but these errors were encountered: