Closed
Description
There are two problems right now. First of all, it would be great to have A*B*x=A*(B*x)
instead of (A*B)*x
because the former is Θ(n^2)
-ish whereas the latter is Θ(n^3)
-ish. The second problem is that the optimized transposed multiplication methods not called for e.g. A'*B*C
. Right now, A
is transposed before the multiplication so typically (A'*B)*C
is much faster than A'*B*C
.