📄 matgen.h
字号:
/***************************************************************************
* blitz/matgen.h Declarations for RowMajor and ColumnMajor matrices
*
* $Id: matgen.h,v 1.3 1998/03/14 00:04:47 tveldhui Exp $
*
* Copyright (C) 1997,1998 Todd Veldhuizen <tveldhui@seurat.uwaterloo.ca>
*
* 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-suggest@cybervision.com
* Bugs: blitz-bugs@cybervision.com
*
* For more information, please see the Blitz++ Home Page:
* http://seurat.uwaterloo.ca/blitz/
*
***************************************************************************
* $Log: matgen.h,v $
* Revision 1.3 1998/03/14 00:04:47 tveldhui
* 0.2-alpha-05
*
* Revision 1.2 1997/01/24 14:42:00 tveldhui
* Periodic RCS update
*
* Revision 1.1 1997/01/13 22:19:58 tveldhui
* Periodic RCS update
*
*
*/
#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_H
BZ_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 _bz_bool() const
{ return good_; }
unsigned row() const
{ return i_; }
unsigned col() const
{ return j_; }
protected:
unsigned rows_, cols_;
unsigned offset_;
unsigned i_, j_;
_bz_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<class T_numtype>
T_numtype get(const T_numtype * _bz_restrict data,
unsigned i, unsigned j) const
{
BZPRECONDITION(inRange(i,j));
return data[coordToOffset(i,j)];
}
template<class T_numtype>
T_numtype& get(T_numtype * _bz_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<class T_numtype>
T_numtype get(const T_numtype * _bz_restrict data,
unsigned i, unsigned j) const
{
BZPRECONDITION(inRange(i,j));
return data[coordToOffset(i,j)];
}
template<class T_numtype>
T_numtype& get(T_numtype * _bz_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 + -