hi i've looked into the vector duplicate of this but couldn't find answer
ublas::matrix<int> input;
fill(input.begin1(), input.end1(), in_val);
fill(input.begin2(), input.end2(), in_val);
but it gives me
[2,3] {(3,3,3) (3,0,0)}
as you can guess i just want to fill all of it with init_val=3
, Thanks.