Is there a way to create an array of ublas c_vectors with different sizes?
For example
array[0]
would return an ublas::c_vector< double, 3 >
(size=3) and array[0](0)
would access its first element
array[1]
would return an ublas::c_vector< double, 7 >
(size=7) and array[1](0)
would access its first element
etc