Boost logo

Ublas :

Subject: Re: [ublas] GESVD using bindings20081116 and CLapack 3.1.1
From: Jesse Perla (jesseperla_at_[hidden])
Date: 2009-09-07 09:32:26


On Mon, Sep 7, 2009 at 8:42 AM, Yashodhan Nevatia <
yashodhan.nevatia_at_[hidden]> wrote:

> Hi all,
>
> The code fragment is:
>
> double min_delta=0.00001;
> matrix<double> U(3,3);
>

Can't comment on any of the details, but you need to make sure you matrices
are column major to support interfacing with fortran. ie.:
matrix<double, ublas::column_major> U(3,3);

I think that in the newest versions of the bindings this will be verified at
compilation time, but until then you need to be very careful.