Boost logo

Ublas :

From: Gunter Winkler (guwi17_at_[hidden])
Date: 2008-02-02 09:49:26


Am Samstag, 2. Februar 2008 15:37 schrieb Arun Tom Abraham:
> Hi all ,
>
> I am a new user to ublas and bindings .. I am trying to solve a
> equations of the form but have an error at the output ::
>
> equation is of the form Ax = b ,, where A is 3 x 3 , x is 3 x 1 and
> b is 3 x 1 ...

try

     ublas::matrix<float, column_major> A(3,3);
     ublas::vector<float> b(3);

mfg
Gunter