$include_dir="/home/hyper-archives/ublas/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [ublas] Matrix 'View' class
From: Andrey Asadchev (asadchev_at_[hidden])
Date: 2010-08-03 03:14:00
hello Jörn Ungermann
I use array_adapter (and it's variations) to basically accomplish that:
matrix<double, column_major, array_adapter<double> > matrix(m, n,
array_adapter<double>(...));
if you are looking for immediate solution.