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)

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

As far I can tell from reading the documentation there isn't one, the ublas::vector cannot be expanded. You must initialize it like this:

vector<double> v (3);
for (int i = 0; i < v.size (); ++i)
  v (i) = i;
link|improve this answer
if there is no that means i'll have to use assign(vector) which is stupid , or resize then insert ! extra stupid , hope someone give us a hint – Ismail Marmoush Aug 18 '10 at 23:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.