|
Ublas : |
Subject: [ublas] dynamic matrix slice
From: Kraus Philipp (philipp.kraus_at_[hidden])
Date: 2011-01-15 01:24:38
Hello,
How can I create a matrix slice from a dynamic structur?
I need something like that
matrix_vector_slice<matrix<double> > mvsRow, mvsCol
for (iterate over matrix element)
if (matrix element in condition) {
mvsRow.push( row );
mvsCol.push( col );
}
matrix.assign(mvsRow, mvsCol) = newvalue
Thanks
Phil