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

📄 matgen.h

📁 A C++ class library for scientific computing
💻 H
字号:
/*************************************************************************** * blitz/matgen.h       Declarations for RowMajor and ColumnMajor matrices * * $Id: matgen.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_MATGEN_H#define BZ_MATGEN_H#ifndef BZ_MSTRUCT_H #error <blitz/matgen.h> must be included via <blitz/mstruct.h>#endif // BZ_MSTRUCT_HBZ_NAMESPACE(blitz)class GeneralMatrix : public AsymmetricMatrix {public:    GeneralMatrix()    { }    GeneralMatrix(unsigned rows, unsigned cols)        : AsymmetricMatrix(rows, cols)    {    }    unsigned firstInRow(unsigned i) const    { return 0; }    unsigned lastInRow(unsigned i) const    { return cols_ - 1; }    unsigned firstInCol(unsigned j) const    { return 0; }    unsigned lastInCol(unsigned j) const    { return rows_ - 1; }    unsigned numElements() const    { return rows_ * cols_; }};class GeneralIterator {public:    GeneralIterator(unsigned rows, unsigned cols)    {        rows_ = rows;        cols_ = cols;        i_ = 0;        j_ = 0;        offset_ = 0;        good_ = true;    }    unsigned offset() const { return offset_; }    operator bool()   const { return good_; }    unsigned row()    const { return i_; }    unsigned col()    const { return j_; } protected:    unsigned rows_, cols_;    unsigned offset_;    unsigned i_, j_;    bool     good_;};class RowMajorIterator : public GeneralIterator {public:    RowMajorIterator(unsigned rows, unsigned cols)        : GeneralIterator(rows, cols)    { }    void operator++()    {        ++offset_;        ++j_;        if (j_ == cols_)        {            j_ = 0;            ++i_;            if (i_ == rows_)                good_ = false;        }    }};class RowMajor : public GeneralMatrix {public:    typedef RowMajorIterator T_iterator;    RowMajor()    { }    RowMajor(unsigned rows, unsigned cols)        : GeneralMatrix(rows, cols)    { }    unsigned coordToOffset(unsigned i, unsigned j) const    {        return i*cols_+j;    }    template<typename T_numtype>    T_numtype get(const T_numtype * restrict data,        unsigned i, unsigned j) const    {        BZPRECONDITION(inRange(i,j));        return data[coordToOffset(i,j)];    }    template<typename T_numtype>    T_numtype& get(T_numtype * restrict data, unsigned i, unsigned j)    {        BZPRECONDITION(inRange(i,j));        return data[coordToOffset(i,j)];    }};class ColumnMajorIterator : public GeneralIterator {public:    ColumnMajorIterator(unsigned rows, unsigned cols)        : GeneralIterator(rows, cols)    {    }    void operator++()    {        ++offset_;        ++i_;        if (i_ == rows_)        {            i_ = 0;            ++j_;            if (j_ == cols_)                good_ = false;        }    }};class ColumnMajor : public GeneralMatrix {public:    ColumnMajor()    { }    ColumnMajor(unsigned rows, unsigned cols)        : GeneralMatrix(rows, cols)    { }    unsigned coordToOffset(unsigned i, unsigned j) const    {        return j*rows_ + i;    }    template<typename T_numtype>    T_numtype get(const T_numtype * restrict data,        unsigned i, unsigned j) const    {        BZPRECONDITION(inRange(i,j));        return data[coordToOffset(i,j)];    }    template<typename T_numtype>    T_numtype& get(T_numtype * restrict data, unsigned i, unsigned j)    {        BZPRECONDITION(inRange(i,j));        return data[coordToOffset(i,j)];    }};BZ_NAMESPACE_END#endif // BZ_MATGEN_H

⌨️ 快捷键说明

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