⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 matexpr.h

📁 A C++ class library for scientific computing
💻 H
字号:
/*************************************************************************** * blitz/matexpr.h      Matrix<P_numtype, P_structure> expression templates * * $Id: matexpr.h,v 1.4 2003/12/11 03:44:22 julianc Exp $ * * Copyright (C) 1997-2001 Todd Veldhuizen <tveldhui@oonumerics.org> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * Suggestions:          blitz-dev@oonumerics.org * Bugs:                 blitz-bugs@oonumerics.org * * For more information, please see the Blitz++ Home Page: *    http://oonumerics.org/blitz/ * ***************************************************************************/#ifndef BZ_MATEXPR_H#define BZ_MATEXPR_H#ifndef BZ_MATRIX_H #error <blitz/matexpr.h> must be included via <blitz/matrix.h>#endif#include <blitz/applics.h>BZ_NAMESPACE(blitz)// BlitzMatrixExpressionsBase is a dummy class provided for users of// graphical class browsers.  class BlitzMatrixExpressionsBase { };template<typename P_expr>class _bz_MatExpr : public BlitzMatrixExpressionsBase {public:    typedef P_expr T_expr;    typedef _bz_typename T_expr::T_numtype T_numtype;#ifdef BZ_PASS_EXPR_BY_VALUE    _bz_MatExpr(T_expr a)        : iter_(a)    { }#else    _bz_MatExpr(const T_expr& a)        : iter_(a)    { }#endif    T_numtype operator()(unsigned i, unsigned j) const    { return iter_(i,j); }    unsigned rows(unsigned recommendedRows) const    { return iter_.rows(recommendedRows); }    unsigned cols(unsigned recommendedCols) const    { return iter_.cols(recommendedCols); }private:    T_expr iter_;};template<typename P_expr1, typename P_expr2, typename P_op>class _bz_MatExprOp : public BlitzMatrixExpressionsBase {public:    typedef P_expr1 T_expr1;    typedef P_expr2 T_expr2;    typedef _bz_typename T_expr1::T_numtype T_numtype1;    typedef _bz_typename T_expr2::T_numtype T_numtype2;    typedef BZ_PROMOTE(T_numtype1, T_numtype2) T_numtype;    typedef P_op    T_op;#ifdef BZ_PASS_EXPR_BY_VALUE    _bz_MatExprOp(T_expr1 a, T_expr2 b)        : iter1_(a), iter2_(b)    { }#else    _bz_MatExprOp(const T_expr1& a, const T_expr2& b)        : iter1_(a), iter2_(b)    { }#endif    T_numtype operator()(unsigned i, unsigned j) const    { return T_op::apply(iter1_(i,j), iter2_(i,j)); }    unsigned rows(unsigned recommendedRows) const    {        BZPRECONDITION(iter2_.rows(recommendedRows) ==             iter1_.rows(recommendedRows));        return iter1_.rows(recommendedRows);    }    unsigned cols(unsigned recommendedCols) const    {        BZPRECONDITION(iter2_.cols(recommendedCols) ==             iter1_.cols(recommendedCols));        return iter1_.cols(recommendedCols);    }private:    T_expr1 iter1_;    T_expr2 iter2_;};template<typename P_expr, typename P_unaryOp>class _bz_MatExprUnaryOp : public BlitzMatrixExpressionsBase {public:    typedef P_expr T_expr;    typedef P_unaryOp T_unaryOp;    typedef _bz_typename T_unaryOp::T_numtype T_numtype;#ifdef BZ_PASS_EXPR_BY_VALUE    _bz_MatExprUnaryOp(T_expr iter)        : iter_(iter)    { }#else    _bz_MatExprUnaryOp(const T_expr& iter)        : iter_(iter)    { }#endif    T_numtype operator()(unsigned i, unsigned j) const    { return T_unaryOp::apply(iter_(i,j)); }    unsigned rows(unsigned recommendedRows) const    { return iter_.rows(recommendedRows); }    unsigned cols(unsigned recommendedCols) const    { return iter_.cols(recommendedCols); }private:    T_expr iter_;    };template<typename P_numtype>class _bz_MatExprConstant : public BlitzMatrixExpressionsBase {public:    typedef P_numtype T_numtype;    _bz_MatExprConstant(P_numtype value)        : value_(value)    { }    T_numtype operator()(unsigned i, unsigned j) const    { return value_; }    unsigned rows(unsigned recommendedRows) const    { return recommendedRows; }    unsigned cols(unsigned recommendedCols) const    { return recommendedCols; }private:    T_numtype value_;};BZ_NAMESPACE_END#include <blitz/matref.h>#include <blitz/matbops.h>#include <blitz/matuops.h>#endif // BZ_MATEXPR_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -