Assume that A has bounds (1:2,1:2,1:numfoo ), how do you vectorize the following lines:
W = zeros( 2, 2, numfoo );
for i = 1:numfoo
temp(1:2,1:2) = inv( A(1:2,1:2,i) );
W(1:2,1:2,i) = ( temp * (temp') );
end
TYIA!
|
Assume that A has bounds (1:2,1:2,1:numfoo ), how do you vectorize the following lines:
TYIA! |
|||
|
|
Since your matrix size is only
I tested it, it gives the same result, and a speed-up x100
|
|||||
|
|
I found many examples that vectorized code is not always faster or clearer. If you want vectorized code here is one using cell array and without for-loop, but it slower and not as clear as yours.
The results are the same as by your code. |
|||
|
|
|
A little speed gain is possible using the mldivide instead of inv.
On my machine you get, Elapsed time is 0.182324 seconds. Elapsed time is 0.162933 seconds. |
|||||
|
|
First of all, this code an be simplified significantly:
Secondly, what do you mean "vectorize the following lines"? What is your objective? Do you want to get rid of the FOR loop? Do you think this code would run faster if it were "vectorized"? What is it you're looking for? |
|||||||||||
|