Usual matrix multiplication is done from left to right and top to bottom. Does there exist an application or a theory that does matrix multiplication from right to left and top to bottom?
EXAMPLE:
$\begin{bmatrix}0 \ 1 \\ 1 \ 0 \end{bmatrix} = \begin{bmatrix} 0 \ 1 \\ 1 \ 0 \end{bmatrix} « \begin{bmatrix} 0 \ 1 \\ 1 \ 0 \end{bmatrix}$
Where I have used the symbol « to denote that the multiplication must be done strictly from RIGHT to LEFT and TOP to BOTTOM.
To get the $a_{1,2} $ entry of the product we would do $ 1 \cdot 1 + 0 \cdot 0 = 1 $
In words,
(first row of matrix on the right of «)×(second column of matrix on the left of «) = (the entry in the first row , second column of the product)
The other entries of the product are computed in the same way. Has this been explored by anyone? Is there any published work?
Thank you for your consideration in this matter.
Should i have edited my original post or add it as a comment? Note i can't preview MathJax for comments. Thanx.
– neofoxmulder Jan 16 '14 at 05:02