-
Notifications
You must be signed in to change notification settings - Fork 119
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 and vector operations (broadcasting) #32
Comments
If something like this was added how would you suggest it be incorporated?
I don't like automatically broadcasting if the dimensions don't line up. That can easily lead to a difficult to detect bug. Which I have encountered in python/matlab before. |
Actually for the broadcasting I have to do:
but it would be easier if:
|
Did you end up implementing this on your own? |
This seems close enough to my request that I'll bump this. I would also really like to be able to do arithmetic operations on two matrices, not just one scalar value. |
Hi Peter,
I think it would be good, if ejml supports other matrix operations, such as adding or multiplying a vector to an entire matrix, for example:
https://jakevdp.github.io/PythonDataScienceHandbook/02.05-computation-on-arrays-broadcasting.html
Thanks Peter!
The text was updated successfully, but these errors were encountered: