$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Toon Knapen (toon.knapen_at_[hidden])
Date: 2002-05-02 03:56:22
I get a compilation error when trying to do a substraction of a complex
matrix on a double matrix. I can of course do
matrix< double > rm;
matrix< std::complex< double > > cm;
matrix< std::complex< double > > result = matrix< complex >( rm ) - cm ;
but I guess I'm loosing efficienty here creating the temporary complex matrix
out of rm ?