mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2024-11-10 08:55:37 +00:00
rewriting of matrix sample class as a pure template with scalar operations
This commit is contained in:
parent
270186f52e
commit
f79533c5ce
@ -23,17 +23,14 @@
|
|||||||
#include <LatAnalyze/Global.hpp>
|
#include <LatAnalyze/Global.hpp>
|
||||||
#include <LatAnalyze/IoObject.hpp>
|
#include <LatAnalyze/IoObject.hpp>
|
||||||
#include <LatAnalyze/ParserState.hpp>
|
#include <LatAnalyze/ParserState.hpp>
|
||||||
|
#include <LatAnalyze/Mat.hpp>
|
||||||
|
#include <LatAnalyze/MatSample.hpp>
|
||||||
|
#include <LatAnalyze/RandGen.hpp>
|
||||||
#include <queue>
|
#include <queue>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
|
||||||
BEGIN_NAMESPACE
|
BEGIN_NAMESPACE
|
||||||
|
|
||||||
// forward declaration of IO types
|
|
||||||
class DMat;
|
|
||||||
class DMatSample;
|
|
||||||
class RandGen;
|
|
||||||
class RandGenState;
|
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* Abstract datafile class *
|
* Abstract datafile class *
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
@ -23,95 +23,8 @@
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace Latan;
|
using namespace Latan;
|
||||||
|
|
||||||
/******************************************************************************
|
template <>
|
||||||
* DMatSample implementation *
|
IoObject::IoType MatSample<double>::getType(void) const
|
||||||
******************************************************************************/
|
|
||||||
// constructors ////////////////////////////////////////////////////////////////
|
|
||||||
DMatSample::DMatSample(const Index nSample, const Index nRow,
|
|
||||||
const Index nCol)
|
|
||||||
: Sample<DMat>(nSample)
|
|
||||||
{
|
|
||||||
resizeMat(nRow, nCol);
|
|
||||||
}
|
|
||||||
|
|
||||||
DMatSample::DMatSample(ConstBlock &sampleBlock)
|
|
||||||
: DMatSample(sampleBlock.getSample().size(), sampleBlock.getNRow(),
|
|
||||||
sampleBlock.getNCol())
|
|
||||||
{
|
|
||||||
const DMatSample &sample = sampleBlock.getSample();
|
|
||||||
|
|
||||||
this->resize(sample.size());
|
|
||||||
FOR_STAT_ARRAY(*this, s)
|
|
||||||
{
|
|
||||||
(*this)[s] = sample[s].block(sampleBlock.getStartRow(),
|
|
||||||
sampleBlock.getStartCol(),
|
|
||||||
sampleBlock.getNRow(),
|
|
||||||
sampleBlock.getNCol());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
DMatSample::DMatSample(ConstBlock &&sampleBlock)
|
|
||||||
: DMatSample(sampleBlock)
|
|
||||||
{}
|
|
||||||
|
|
||||||
// assignement operator ////////////////////////////////////////////////////////
|
|
||||||
DMatSample & DMatSample::operator=(Block &sampleBlock)
|
|
||||||
{
|
|
||||||
DMatSample tmp(sampleBlock);
|
|
||||||
|
|
||||||
this->swap(tmp);
|
|
||||||
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
DMatSample & DMatSample::operator=(Block &&sampleBlock)
|
|
||||||
{
|
|
||||||
*this = sampleBlock;
|
|
||||||
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
DMatSample & DMatSample::operator=(ConstBlock &sampleBlock)
|
|
||||||
{
|
|
||||||
DMatSample tmp(sampleBlock);
|
|
||||||
|
|
||||||
this->swap(tmp);
|
|
||||||
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
DMatSample & DMatSample::operator=(ConstBlock &&sampleBlock)
|
|
||||||
{
|
|
||||||
*this = sampleBlock;
|
|
||||||
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
// block access ////////////////////////////////////////////////////////////////
|
|
||||||
DMatSample::ConstBlock DMatSample::block(const Index i, const Index j,
|
|
||||||
const Index nRow,
|
|
||||||
const Index nCol) const
|
|
||||||
{
|
|
||||||
return ConstBlock(*this, i, j, nRow, nCol);
|
|
||||||
}
|
|
||||||
|
|
||||||
DMatSample::Block DMatSample::block(const Index i, const Index j,
|
|
||||||
const Index nRow, const Index nCol)
|
|
||||||
{
|
|
||||||
return Block(*this, i, j, nRow, nCol);
|
|
||||||
}
|
|
||||||
|
|
||||||
// resize all matrices /////////////////////////////////////////////////////////
|
|
||||||
void DMatSample::resizeMat(const Index nRow, const Index nCol)
|
|
||||||
{
|
|
||||||
FOR_STAT_ARRAY(*this, s)
|
|
||||||
{
|
|
||||||
(*this)[s].resize(nRow, nCol);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// IO type /////////////////////////////////////////////////////////////////////
|
|
||||||
IoObject::IoType DMatSample::getType(void) const
|
|
||||||
{
|
{
|
||||||
return IoType::dMatSample;
|
return IoType::dMatSample;
|
||||||
}
|
}
|
||||||
|
@ -23,13 +23,19 @@
|
|||||||
#include <LatAnalyze/Global.hpp>
|
#include <LatAnalyze/Global.hpp>
|
||||||
#include <LatAnalyze/Mat.hpp>
|
#include <LatAnalyze/Mat.hpp>
|
||||||
#include <LatAnalyze/StatArray.hpp>
|
#include <LatAnalyze/StatArray.hpp>
|
||||||
|
#include <functional>
|
||||||
|
|
||||||
BEGIN_NAMESPACE
|
BEGIN_NAMESPACE
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* matrix sample class *
|
* matrix sample class *
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
class DMatSample: public Sample<DMat>, public IoObject
|
#define SCAL_OP_RETURN(op, x) this->unaryExpr(\
|
||||||
|
std::bind(MatSample<T>::scalar##op,\
|
||||||
|
std::placeholders::_1, x))
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
class MatSample: public Sample<Mat<T>>, public IoObject
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// block type template
|
// block type template
|
||||||
@ -61,22 +67,36 @@ public:
|
|||||||
const Index i_, j_, nRow_, nCol_;
|
const Index i_, j_, nRow_, nCol_;
|
||||||
};
|
};
|
||||||
// block types
|
// block types
|
||||||
typedef BlockTemplate<DMatSample> Block;
|
typedef BlockTemplate<Sample<Mat<T>>> Block;
|
||||||
typedef const BlockTemplate<const DMatSample> ConstBlock;
|
typedef const BlockTemplate<const Sample<Mat<T>>> ConstBlock;
|
||||||
|
private:
|
||||||
|
static inline Mat<T> scalarMul(const Mat<T> &m, const T &x)
|
||||||
|
{
|
||||||
|
return m*x;
|
||||||
|
}
|
||||||
|
static inline Mat<T> scalarDiv(const Mat<T> &m, const T &x)
|
||||||
|
{
|
||||||
|
return m/x;
|
||||||
|
}
|
||||||
public:
|
public:
|
||||||
// constructors
|
// constructors
|
||||||
using Sample<DMat>::Sample;
|
using Sample<Mat<T>>::Sample;
|
||||||
DMatSample(void) = default;
|
MatSample(void) = default;
|
||||||
DMatSample(const Index nSample, const Index nRow, const Index nCol);
|
MatSample(const Index nSample, const Index nRow, const Index nCol);
|
||||||
DMatSample(ConstBlock &sampleBlock);
|
MatSample(ConstBlock &sampleBlock);
|
||||||
DMatSample(ConstBlock &&sampleBlock);
|
MatSample(ConstBlock &&sampleBlock);
|
||||||
// destructor
|
// destructor
|
||||||
virtual ~DMatSample(void) = default;
|
virtual ~MatSample(void) = default;
|
||||||
// assignement operator
|
// assignement operator
|
||||||
DMatSample & operator=(Block &sampleBlock);
|
MatSample & operator=(Block &sampleBlock);
|
||||||
DMatSample & operator=(Block &&sampleBlock);
|
MatSample & operator=(Block &&sampleBlock);
|
||||||
DMatSample & operator=(ConstBlock &sampleBlock);
|
MatSample & operator=(ConstBlock &sampleBlock);
|
||||||
DMatSample & operator=(ConstBlock &&sampleBlock);
|
MatSample & operator=(ConstBlock &&sampleBlock);
|
||||||
|
// product/division by scalar operators (not provided by Eigen)
|
||||||
|
auto operator*=(const T &x)->decltype(SCAL_OP_RETURN(Mul, x));
|
||||||
|
auto operator*=(const T &&x)->decltype(SCAL_OP_RETURN(Mul, x));
|
||||||
|
auto operator/=(const T &x)->decltype(SCAL_OP_RETURN(Div, x));
|
||||||
|
auto operator/=(const T &&x)->decltype(SCAL_OP_RETURN(Div, x));
|
||||||
// block access
|
// block access
|
||||||
ConstBlock block(const Index i, const Index j, const Index nRow,
|
ConstBlock block(const Index i, const Index j, const Index nRow,
|
||||||
const Index nCol) const;
|
const Index nCol) const;
|
||||||
@ -86,16 +106,59 @@ public:
|
|||||||
void resizeMat(const Index nRow, const Index nCol);
|
void resizeMat(const Index nRow, const Index nCol);
|
||||||
// IO type
|
// IO type
|
||||||
virtual IoType getType(void) const;
|
virtual IoType getType(void) const;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// non-member operators
|
||||||
|
template <typename T>
|
||||||
|
inline auto operator*(MatSample<T> s, const T &x)->decltype(s *= x)
|
||||||
|
{
|
||||||
|
return s *= x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
inline auto operator*(MatSample<T> s, const T &&x)->decltype(s *= x)
|
||||||
|
{
|
||||||
|
return s *= x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
inline auto operator*(const T &x, MatSample<T> s)->decltype(s *= x)
|
||||||
|
{
|
||||||
|
return s *= x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
inline auto operator*(const T &&x, MatSample<T> s)->decltype(s *= x)
|
||||||
|
{
|
||||||
|
return s *= x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
inline auto operator/(MatSample<T> s, const T &x)->decltype(s /= x)
|
||||||
|
{
|
||||||
|
return s /= x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
inline auto operator/(MatSample<T> s, const T &&x)->decltype(s /= x)
|
||||||
|
{
|
||||||
|
return s /= x;
|
||||||
|
}
|
||||||
|
|
||||||
|
// type aliases
|
||||||
|
typedef MatSample<double> DMatSample;
|
||||||
|
typedef MatSample<std::complex<double>> CMatSample;
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* Block template implementation *
|
* Block template implementation *
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
// constructors ////////////////////////////////////////////////////////////////
|
// constructors ////////////////////////////////////////////////////////////////
|
||||||
|
template <typename T>
|
||||||
template <class S>
|
template <class S>
|
||||||
DMatSample::BlockTemplate<S>::BlockTemplate(S &sample, const Index i,
|
MatSample<T>::BlockTemplate<S>::BlockTemplate(S &sample, const Index i,
|
||||||
const Index j, const Index nRow,
|
const Index j, const Index nRow,
|
||||||
const Index nCol)
|
const Index nCol)
|
||||||
: sample_(sample)
|
: sample_(sample)
|
||||||
, i_(i)
|
, i_(i)
|
||||||
, j_(j)
|
, j_(j)
|
||||||
@ -103,8 +166,9 @@ DMatSample::BlockTemplate<S>::BlockTemplate(S &sample, const Index i,
|
|||||||
, nCol_(nCol)
|
, nCol_(nCol)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
template <class S>
|
template <class S>
|
||||||
DMatSample::BlockTemplate<S>::BlockTemplate(BlockTemplate<NonConstType> &b)
|
MatSample<T>::BlockTemplate<S>::BlockTemplate(BlockTemplate<NonConstType> &b)
|
||||||
: sample_(b.getSample())
|
: sample_(b.getSample())
|
||||||
, i_(b.getStartRow())
|
, i_(b.getStartRow())
|
||||||
, j_(b.getStartCol())
|
, j_(b.getStartCol())
|
||||||
@ -112,52 +176,60 @@ DMatSample::BlockTemplate<S>::BlockTemplate(BlockTemplate<NonConstType> &b)
|
|||||||
, nCol_(b.getNCol())
|
, nCol_(b.getNCol())
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
template <class S>
|
template <class S>
|
||||||
DMatSample::BlockTemplate<S>::BlockTemplate(BlockTemplate<NonConstType> &&b)
|
MatSample<T>::BlockTemplate<S>::BlockTemplate(BlockTemplate<NonConstType> &&b)
|
||||||
: BlockTemplate(b)
|
: BlockTemplate(b)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
// access //////////////////////////////////////////////////////////////////////
|
// access //////////////////////////////////////////////////////////////////////
|
||||||
|
template <typename T>
|
||||||
template <class S>
|
template <class S>
|
||||||
S & DMatSample::BlockTemplate<S>::getSample(void)
|
S & MatSample<T>::BlockTemplate<S>::getSample(void)
|
||||||
{
|
{
|
||||||
return sample_;
|
return sample_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
template <class S>
|
template <class S>
|
||||||
const S & DMatSample::BlockTemplate<S>::getSample(void) const
|
const S & MatSample<T>::BlockTemplate<S>::getSample(void) const
|
||||||
{
|
{
|
||||||
return sample_;
|
return sample_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
template <class S>
|
template <class S>
|
||||||
Index DMatSample::BlockTemplate<S>::getStartRow(void) const
|
Index MatSample<T>::BlockTemplate<S>::getStartRow(void) const
|
||||||
{
|
{
|
||||||
return i_;
|
return i_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
template <class S>
|
template <class S>
|
||||||
Index DMatSample::BlockTemplate<S>::getStartCol(void) const
|
Index MatSample<T>::BlockTemplate<S>::getStartCol(void) const
|
||||||
{
|
{
|
||||||
return j_;
|
return j_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
template <class S>
|
template <class S>
|
||||||
Index DMatSample::BlockTemplate<S>::getNRow(void) const
|
Index MatSample<T>::BlockTemplate<S>::getNRow(void) const
|
||||||
{
|
{
|
||||||
return nRow_;
|
return nRow_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
template <class S>
|
template <class S>
|
||||||
Index DMatSample::BlockTemplate<S>::getNCol(void) const
|
Index MatSample<T>::BlockTemplate<S>::getNCol(void) const
|
||||||
{
|
{
|
||||||
return nCol_;
|
return nCol_;
|
||||||
}
|
}
|
||||||
|
|
||||||
// assignement operators ///////////////////////////////////////////////////////
|
// assignement operators ///////////////////////////////////////////////////////
|
||||||
|
template <typename T>
|
||||||
template <class S>
|
template <class S>
|
||||||
DMatSample::BlockTemplate<S> &
|
MatSample<T>::BlockTemplate<S> &
|
||||||
DMatSample::BlockTemplate<S>::operator=(const S &sample)
|
MatSample<T>::BlockTemplate<S>::operator=(const S &sample)
|
||||||
{
|
{
|
||||||
FOR_STAT_ARRAY(sample_, s)
|
FOR_STAT_ARRAY(sample_, s)
|
||||||
{
|
{
|
||||||
@ -167,15 +239,148 @@ DMatSample::BlockTemplate<S>::operator=(const S &sample)
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
template <class S>
|
template <class S>
|
||||||
DMatSample::BlockTemplate<S> &
|
MatSample<T>::BlockTemplate<S> &
|
||||||
DMatSample::BlockTemplate<S>::operator=(const S &&sample)
|
MatSample<T>::BlockTemplate<S>::operator=(const S &&sample)
|
||||||
{
|
{
|
||||||
*this = sample;
|
*this = sample;
|
||||||
|
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* DMatSample implementation *
|
||||||
|
******************************************************************************/
|
||||||
|
// constructors ////////////////////////////////////////////////////////////////
|
||||||
|
template <typename T>
|
||||||
|
MatSample<T>::MatSample(const Index nSample, const Index nRow,
|
||||||
|
const Index nCol)
|
||||||
|
: Sample<Mat<T>>(nSample)
|
||||||
|
{
|
||||||
|
resizeMat(nRow, nCol);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
MatSample<T>::MatSample(ConstBlock &sampleBlock)
|
||||||
|
: MatSample(sampleBlock.getSample().size(), sampleBlock.getNRow(),
|
||||||
|
sampleBlock.getNCol())
|
||||||
|
{
|
||||||
|
const MatSample<T> &sample = sampleBlock.getSample();
|
||||||
|
|
||||||
|
this->resize(sample.size());
|
||||||
|
FOR_STAT_ARRAY(*this, s)
|
||||||
|
{
|
||||||
|
(*this)[s] = sample[s].block(sampleBlock.getStartRow(),
|
||||||
|
sampleBlock.getStartCol(),
|
||||||
|
sampleBlock.getNRow(),
|
||||||
|
sampleBlock.getNCol());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
MatSample<T>::MatSample(ConstBlock &&sampleBlock)
|
||||||
|
: MatSample(sampleBlock)
|
||||||
|
{}
|
||||||
|
|
||||||
|
// assignement operator ////////////////////////////////////////////////////////
|
||||||
|
template <typename T>
|
||||||
|
MatSample<T> & MatSample<T>::operator=(Block &sampleBlock)
|
||||||
|
{
|
||||||
|
MatSample<T> tmp(sampleBlock);
|
||||||
|
|
||||||
|
this->swap(tmp);
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
MatSample<T> & MatSample<T>::operator=(Block &&sampleBlock)
|
||||||
|
{
|
||||||
|
*this = sampleBlock;
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
MatSample<T> & MatSample<T>::operator=(ConstBlock &sampleBlock)
|
||||||
|
{
|
||||||
|
MatSample<T> tmp(sampleBlock);
|
||||||
|
|
||||||
|
this->swap(tmp);
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
MatSample<T> & MatSample<T>::operator=(ConstBlock &&sampleBlock)
|
||||||
|
{
|
||||||
|
*this = sampleBlock;
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
// product/division by scalar operators (not provided by Eigen) ////////////////
|
||||||
|
template <typename T>
|
||||||
|
auto MatSample<T>::operator*=(const T &x)->decltype(SCAL_OP_RETURN(Mul, x))
|
||||||
|
{
|
||||||
|
return SCAL_OP_RETURN(Mul, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
auto MatSample<T>::operator*=(const T &&x)->decltype(SCAL_OP_RETURN(Mul, x))
|
||||||
|
{
|
||||||
|
return (*this) *= x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
auto MatSample<T>::operator/=(const T &x)->decltype(SCAL_OP_RETURN(Div, x))
|
||||||
|
{
|
||||||
|
return SCAL_OP_RETURN(Div, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
auto MatSample<T>::operator/=(const T &&x)->decltype(SCAL_OP_RETURN(Div, x))
|
||||||
|
{
|
||||||
|
return (*this) *= x;
|
||||||
|
}
|
||||||
|
|
||||||
|
// block access ////////////////////////////////////////////////////////////////
|
||||||
|
template <typename T>
|
||||||
|
typename MatSample<T>::ConstBlock MatSample<T>::block(const Index i,
|
||||||
|
const Index j,
|
||||||
|
const Index nRow,
|
||||||
|
const Index nCol) const
|
||||||
|
{
|
||||||
|
return ConstBlock(*this, i, j, nRow, nCol);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
typename MatSample<T>::Block MatSample<T>::block(const Index i,
|
||||||
|
const Index j,
|
||||||
|
const Index nRow,
|
||||||
|
const Index nCol)
|
||||||
|
{
|
||||||
|
return Block(*this, i, j, nRow, nCol);
|
||||||
|
}
|
||||||
|
|
||||||
|
// resize all matrices /////////////////////////////////////////////////////////
|
||||||
|
template <typename T>
|
||||||
|
void MatSample<T>::resizeMat(const Index nRow, const Index nCol)
|
||||||
|
{
|
||||||
|
FOR_STAT_ARRAY(*this, s)
|
||||||
|
{
|
||||||
|
(*this)[s].resize(nRow, nCol);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// IO type /////////////////////////////////////////////////////////////////////
|
||||||
|
template <typename T>
|
||||||
|
IoObject::IoType MatSample<T>::getType(void) const
|
||||||
|
{
|
||||||
|
return IoType::noType;
|
||||||
|
}
|
||||||
|
|
||||||
END_NAMESPACE
|
END_NAMESPACE
|
||||||
|
|
||||||
#endif // Latan_MatSample_hpp_
|
#endif // Latan_MatSample_hpp_
|
||||||
|
@ -90,7 +90,6 @@ template <typename T>
|
|||||||
using Sample = StatArray<T, SAMPLE_OFFSET>;
|
using Sample = StatArray<T, SAMPLE_OFFSET>;
|
||||||
|
|
||||||
typedef Sample<double> DSample;
|
typedef Sample<double> DSample;
|
||||||
typedef Sample<CMat> CMatSample;
|
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* StatArray class template implementation *
|
* StatArray class template implementation *
|
||||||
@ -245,13 +244,14 @@ inline T ReducOp::tensProd(const T &v1 __unused, const T &v2 __unused)
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
inline DMat ReducOp::prod(const DMat &a, const DMat &b)
|
inline Mat<double> ReducOp::prod(const Mat<double> &a, const Mat<double> &b)
|
||||||
{
|
{
|
||||||
return a.cwiseProduct(b);
|
return a.cwiseProduct(b);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
inline DMat ReducOp::tensProd(const DMat &v1, const DMat &v2)
|
inline Mat<double> ReducOp::tensProd(const Mat<double> &v1,
|
||||||
|
const Mat<double> &v2)
|
||||||
{
|
{
|
||||||
if ((v1.cols() != 1)||(v2.cols() != 1))
|
if ((v1.cols() != 1)||(v2.cols() != 1))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user