📄 matrix_i.h
字号:
//// matrix_i.h//// Copyright (C) 1996 Limit Point Systems, Inc.//// Author: Curtis Janssen <cljanss@limitpt.com>// Maintainer: LPS//// This file is part of the SC Toolkit.//// The SC Toolkit is free software; you can redistribute it and/or modify// it under the terms of the GNU Library General Public License as published by// the Free Software Foundation; either version 2, or (at your option)// any later version.//// The SC Toolkit 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 Library General Public License for more details.//// You should have received a copy of the GNU Library General Public License// along with the SC Toolkit; see the file COPYING.LIB. If not, write to// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.//// The U.S. Government is granted a limited license as per AL 91-7.//#ifndef _math_scmat_matrix_i_h#define _math_scmat_matrix_i_h#ifdef __GNUC__#pragma interface#endif#include <math/scmat/matrix.h>// These are the inline candidates for the members defined in matrix.h.#ifdef INLINE_FUNCTIONS#define INLINE inline#else#define INLINE#endifnamespace sc {// /////////////////////////////////////////////////////////////////////////// SCMatrixdouble inline candidatesINLINESCMatrixdouble::SCMatrixdouble(SCMatrix*a,int b,int c): matrix(a),i(b),j(c){}INLINESCMatrixdouble::~SCMatrixdouble(){}INLINE doubleSCMatrixdouble::operator=(double a){ matrix.set_element(i,j,a); return a;}INLINE doubleSCMatrixdouble::operator=(const SCMatrixdouble& md){ double a = md.val(); matrix.set_element(i,j,a); return a;}INLINESCMatrixdouble::operator double(){ return matrix.get_element(i,j);}INLINE doubleSCMatrixdouble::val() const{ return matrix.get_element(i,j);}// /////////////////////////////////////////////////////////////////////////// SymmSCMatrixdouble inline candidatesINLINESymmSCMatrixdouble::SymmSCMatrixdouble(SymmSCMatrix*a,int b,int c): matrix(a),i(b),j(c){}INLINESymmSCMatrixdouble::~SymmSCMatrixdouble(){}INLINE doubleSymmSCMatrixdouble::operator=(double a){ matrix.set_element(i,j,a); return a;}INLINE doubleSymmSCMatrixdouble::operator=(const SymmSCMatrixdouble& md){ double a = md.val(); matrix.set_element(i,j,a); return a;}INLINESymmSCMatrixdouble::operator double(){ return matrix.get_element(i,j);}INLINE doubleSymmSCMatrixdouble::val() const{ return matrix.get_element(i,j);}// /////////////////////////////////////////////////////////////////////////// DiagSCMatrixdouble inline candidatesINLINEDiagSCMatrixdouble::DiagSCMatrixdouble(DiagSCMatrix*a,int b,int c): matrix(a),i(b),j(c){}INLINEDiagSCMatrixdouble::~DiagSCMatrixdouble(){}INLINE doubleDiagSCMatrixdouble::operator=(double a){ matrix.set_element(i,a); return a;}INLINE doubleDiagSCMatrixdouble::operator=(const DiagSCMatrixdouble& md){ double a = md.val(); matrix.set_element(i,a); return a;}INLINEDiagSCMatrixdouble::operator double(){ return matrix.get_element(i);}INLINE doubleDiagSCMatrixdouble::val() const{ return matrix.get_element(i);}// /////////////////////////////////////////////////////////////////////////// SCVectordouble inline candidatesINLINESCVectordouble::SCVectordouble(SCVector*a,int b): vector(a),i(b){}INLINESCVectordouble::~SCVectordouble(){}INLINE doubleSCVectordouble::operator=(double a){ vector.set_element(i,a); return a;}INLINE doubleSCVectordouble::operator=(const SCVectordouble& vd){ double a = vd.val(); vector.set_element(i,a); return a;}INLINESCVectordouble::operator double(){ return vector.get_element(i);}INLINE doubleSCVectordouble::val() const{ return vector.get_element(i);}}#undef INLINE#endif// Local Variables:// mode: c++// c-file-style: "CLJ"// End:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -