Tagged Questions
2
votes
2answers
209 views
Why is vectorization beneficial for Matlab programs? Is it the same for NumPy and Boost(uBLAS)?
Using vectorization to replace for-loops may increase Matlab programs' speed significantly. Is it because the vectorized codes are runned in parallel?
Is vectorization also beneficial for program ...
2
votes
5answers
1k views
Initializing a ublas vector from a C array
I am writing a Matlab extension using the C++ ublas library, and I would like to be able to initialize my ublas vectors from the C arrays passed by the Matlab interpeter.
How can I initialize the ...
0
votes
1answer
139 views
Newbie question regarding submatrix manipulation using BOOST uBLAS
This has been puzzling me for a few hours, so maybe someone here can help. I am trying to translate the following simple Matlab program into C++ using uBLAS:
>> R = eye(4);
>> R(:,3) = ...