I have been looking for a matrix multiplier that is similar to a tensor product. The best way I can define the product is with the following example:
Suppose $A=\left[\begin{array}{cc} 1 & 2\\ 3 & 4 \end{array}\right]$, and $B=\left[\begin{array}{cc} 0 & 5\\ 6 & 7 \end{array}\right]$.
Does their exist a multiplier (call it $\#$) such that
$A\#B=\left[\begin{array}{cc} 1\left[\begin{array}{cc} 0 & 5\end{array}\right] & 2\left[\begin{array}{cc} 0 & 5\end{array}\right]\\ 3\left[\begin{array}{cc} 6 & 7\end{array}\right] & 4\left[\begin{array}{cc} 6 & 7\end{array}\right] \end{array}\right]=\left[\begin{array}{cccc} 0 & 5 & 0 & 10\\ 18 & 21 & 24 & 28 \end{array}\right]$.
Does such a multiplier exist? If not, how could I use existing operators to attain my desired outcome?