#include <STK_TExpAlgebra.h>
Public Member Functions | |
| Real | operator[] (Integer i) const |
Protected Member Functions | |
| BinOpBase (const ExpLeft &X, const MatrixSquare &y) | |
| ~BinOpBase () | |
Protected Attributes | |
| const ExpLeft & | lhs_ |
| Reference on the Left Side. | |
| const MatrixSquare & | rhs_ |
| Reference on the Right term. | |
Definition at line 259 of file STK_TExpAlgebra.h.
| STK::BinOpBase< Mult, ExpLeft, MatrixSquare >::BinOpBase | ( | const ExpLeft & | X, | |
| const MatrixSquare & | y | |||
| ) | [inline, protected] |
| STK::BinOpBase< Mult, ExpLeft, MatrixSquare >::~BinOpBase | ( | ) | [inline, protected] |
| Real STK::BinOpBase< Mult, ExpLeft, MatrixSquare >::operator[] | ( | Integer | i | ) | const [inline] |
The operator[] will perform lhs_ Op MatrixSquare(j) where Op Mult (*)
Definition at line 276 of file STK_TExpAlgebra.h.
References STK::Mult::apply(), STK::BinOpBase< Op, ExpLeft, ExpRight >::lhs_, and STK::BinOpBase< Op, ExpLeft, ExpRight >::rhs_.
00277 { 00278 Real aux = 0.0; 00279 for (Integer j = rhs_.firstRow(); j<= rhs_.lastRow(); j++) 00280 aux += Mult::apply(lhs_[j],rhs_(j,i)); 00281 return aux; 00282 }
const ExpLeft& STK::BinOpBase< Mult, ExpLeft, MatrixSquare >::lhs_ [protected] |
Definition at line 262 of file STK_TExpAlgebra.h.
const MatrixSquare& STK::BinOpBase< Mult, ExpLeft, MatrixSquare >::rhs_ [protected] |
Definition at line 263 of file STK_TExpAlgebra.h.
1.5.8