|
Ublas : |
Subject: [ublas] indirect_matrix with range
From: Kraus Philipp (philipp.kraus_at_[hidden])
Date: 2011-03-08 05:13:04
Hello,
I use a indirect_array to extract different rows of a matrix:
ublas::matrix<double> data = /* data is filled */
ublas::indirect_array<> idx = /* get index array */
This call works well:
ublas::matrix_indirect<ublas::matrix<double> > projectmatrix(data,
idx, idx);
but I would like to get all columns of the matrix like
ublas::matrix_indirect<ublas::matrix<double> > projectmatrix(data,
idx, range(0, data.size2()));
Should I create a temporary index array or can I use the ublas::range ?
Thanks
Phil