Boost logo

Ublas :

Subject: Re: [ublas] [bindings] extraneous argument
From: Uldarico Muico (um_at_[hidden])
Date: 2009-09-17 18:04:42


There is a typo

(transa=='N'?traits::matrix_num_columns(a),traits::matrix_num_rows(a))

It should be

(transa=='N' ? traits::matrix_num_columns(a) : traits::matrix_num_rows
(a))

On Sep 17, 2009, at 4:39 AM, Rutger ter Borg wrote:

> I've hacked in support for detection of number of columns of op(A);
> it's
> committed, too. You will need to pass uppercase chars for the
> transa, transb
> argument(s). I've not been able to test it yet, please let me know
> your
> findings.