I want to multiply a row vector V with a matrix M to get a vector V', i.e.
V' = V * M
How can I do that with MTJ? The interface Vector doesn't seem to have a multiply method.
I want to multiply a row vector V with a matrix M to get a vector V', i.e.
V' = V * M
How can I do that with MTJ? The interface Vector doesn't seem to have a multiply method.
Copyright © 2021 Jogjafile Inc.
I managed to solve my problem using the property that (V * M)T = MT*VT, i.e.
Still, I wonder if there is a cleaner approach.