Suppose I have a matrix $A$ with entries $A_{ij}$ and a vector $u$ with entries $u_i$, and that I want to express matrix $C$ with entries $C_{ij} = A_{ij}u_i$ as a product of matrices or vectors and matrices.
Example:
$A=\begin{bmatrix}a_{11}&a_{12}\\a_{21}&a_{22}\end{bmatrix}$ $u=\begin{bmatrix}u_{1}\\u_{2}\end{bmatrix}$
$C=\begin{bmatrix}u_{1}a_{11}&u_{1}a_{12}\\u_{2}a_{21}&u_{2}a_{22}\end{bmatrix}$
Is there a standard notation similar to that of the Hadamard product ⊙ to write this?
If not, is there a standard notation to express that a diagonal matrix M is generated using the entries of vector $u$ as the values for the diagonal, like the MATLAB and Numpy diag(u) function
$M=\begin{bmatrix}u_{1}& 0\\0&u_{2}\end{bmatrix}$
so that I can do $C = MA$?
I also said it was somewhat of an element wise multiplication, and I mentioned the Hadamard product to give an idea of what I mean.
– nayriz Jun 16 '17 at 16:46