-
Notifications
You must be signed in to change notification settings - Fork 8
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
Why not .* and kron? #2
Comments
This package is to unicode operators JuliaGraphics/ColorVectorSpace.jl#126 OK to close? |
I get that, the questions was more about the functions themselves. Eg why not hardamard!(dest, A, B) = broadcast!(*, dest, A, B) (I guess with bounds checking to prohibit vector special cases) |
Yep. Also more compiler-friendly. (broadcast is expensive.) But this seems a question about implementation rather than purpose, and of course we'd be happy to have improved implementations. |
For custom arrays (like |
Fair enough. PR would be fine. |
I’m confused on the roll of this package: why not just use
.*
(instead ofhardamard
) andkron
(instead oftensor
)?The text was updated successfully, but these errors were encountered: