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
First of all, many thanks for the amazing library!
I'm sorry if I'm asking such a basic question however, my background is from Matlab.
I'm trying to simply perform an element wise multiplication operation between a 3x3 matrix and a column vector (or in other words, a 3x1 matrix).
In Matlab, I'd do the following:
The automatic broadcasting in core.matrix is based on adding leading dimensions. i.e. a shape of [3] can broadcast to [1 3] but not [3 1] by default. It does this by copying across the newly added dimensions, so your [0 1 2] vector will broadcast to [[0 1 2] [0 1 2] [0 1 2]] but not [[0 0 0] [1 1 1] [2 2 2]]
Given this, I suggest transposing the [3 3] matrix, multiplying by the vector then transposing back.
Hello,
First of all, many thanks for the amazing library!
I'm sorry if I'm asking such a basic question however, my background is from Matlab.
I'm trying to simply perform an element wise multiplication operation between a 3x3 matrix and a column vector (or in other words, a 3x1 matrix).
In Matlab, I'd do the following:
In Clojure, using core.matrix, I tried the following, but no success:
The text was updated successfully, but these errors were encountered: