📄 tinymat.h
字号:
/***************************************************************************
* blitz/tinymat.h Declaration of TinyMatrix<T, N, M>
*
* $Id: tinymat.h,v 1.2 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: tinymat.h,v $
* Revision 1.2 1998/03/14 00:04:47 tveldhui
* 0.2-alpha-05
*
* Revision 1.1 1997/07/16 14:51:20 tveldhui
* Update: Alpha release 0.2 (Arrays)
*
*/
#ifndef BZ_TINYMAT_H
#define BZ_TINYMAT_H
#ifndef BZ_BLITZ_H
#include <blitz/blitz.h>
#endif
#ifndef BZ_TINYVEC_H
#include <blitz/tinyvec.h>
#endif
#ifndef BZ_LISTINIT_H
#include <blitz/listinit.h>
#endif
#include <blitz/tinymatexpr.h>
#include <blitz/meta/matassign.h>
BZ_NAMESPACE(blitz)
// Forward declarations
template<class T_expr>
class _bz_tinyMatExpr;
template<class T_numtype, int N_rows, int N_columns, int N_rowStride,
int N_colStride>
class _bz_tinyMatrixRef {
public:
_bz_tinyMatrixRef(T_numtype* _bz_restrict const data)
: data_(data)
{ }
T_numtype * _bz_restrict data()
{ return (T_numtype * _bz_restrict)data_; }
T_numtype& _bz_restrict operator()(int i, int j)
{ return data_[i * N_rowStride + j * N_colStride]; }
T_numtype operator()(int i, int j) const
{ return data_[i * N_rowStride + j * N_colStride]; }
protected:
T_numtype * _bz_restrict const data_;
};
template<class P_numtype, int N_rows, int N_columns>
class TinyMatrix {
public:
typedef P_numtype T_numtype;
typedef _bz_tinyMatrixRef<T_numtype, N_rows, N_columns, N_columns, 1>
T_reference;
typedef TinyMatrix<T_numtype, N_rows, N_columns> T_matrix;
TinyMatrix() { }
T_numtype* _bz_restrict data()
{ return data_; }
const T_numtype* _bz_restrict data() const
{ return data_; }
T_numtype* _bz_restrict dataFirst()
{ return data_; }
const T_numtype* _bz_restrict dataFirst() const
{ return data_; }
// NEEDS_WORK -- precondition checks
T_numtype& _bz_restrict operator()(int i, int j)
{ return data_[i*N_columns + j]; }
T_numtype operator()(int i, int j) const
{ return data_[i*N_columns + j]; }
T_reference getRef()
{ return T_reference((T_numtype*)data_); }
const T_reference getRef() const
{ return T_reference((T_numtype*)data_); }
// Scalar operand
ListInitializationSwitch<T_matrix>
operator=(T_numtype x)
{
return ListInitializationSwitch<T_matrix>(*this, x);
}
template<class T_expr>
TinyMatrix<T_numtype, N_rows, N_columns>&
operator=(_bz_tinyMatExpr<T_expr> expr)
{
_bz_meta_matAssign<N_rows, N_columns, 0>::f(*this, expr,
_bz_update<T_numtype, _bz_typename T_expr::T_numtype>());
return *this;
}
void initialize(T_numtype x)
{
for (int i=0; i < N_rows; ++i)
for (int j=0; j < N_columns; ++j)
(*this)(i,j) = x;
}
T_numtype* _bz_restrict getInitializationIterator()
{ return dataFirst(); }
protected:
T_numtype data_[N_rows * N_columns];
};
BZ_NAMESPACE_END
#include <blitz/meta/matvec.h> // Matrix-vector product metaprogram
#include <blitz/meta/matmat.h> // Matrix-matrix products
#endif // BZ_TINYMAT_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -