Tagged Questions

6
votes
2answers
450 views

Boost vectors versus STL vectors

How do boost::numeric::ublas::vector and std::vector compare in runtime efficiency? Is it safe to assume that I can convert an entire program from using std::vector to use ...
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 ...
1
vote
1answer
332 views

where is the ublas::vector push_back?

hi may i know where is the ublass::vector push_back or what ever does the same ? p.s (i'm not talking about std::vector)
0
votes
4answers
231 views

Segfault when I'm adding object to <vector>

I wrote pieces of code two different ways: using 2-dimensional array as matrix, and using boost::ublas::matrix. When I'm adding this object to in the first case it is working, but in the second I'm ...