#include <STK_TExpAlgebra.h>
Public Member Functions | |
| Real | operator[] (Integer i) const |
Protected Member Functions | |
| BinOpBase (const ExpLeft &X, const MatrixLowerTriangular &y) | |
| ~BinOpBase () | |
Protected Attributes | |
| const ExpLeft & | lhs_ |
| Reference on the Left Side. | |
| const MatrixLowerTriangular & | rhs_ |
| Reference on the Right term. | |
Definition at line 386 of file STK_TExpAlgebra.h.
| STK::BinOpBase< Mult, ExpLeft, MatrixLowerTriangular >::BinOpBase | ( | const ExpLeft & | X, | |
| const MatrixLowerTriangular & | y | |||
| ) | [inline, protected] |
| STK::BinOpBase< Mult, ExpLeft, MatrixLowerTriangular >::~BinOpBase | ( | ) | [inline, protected] |
| Real STK::BinOpBase< Mult, ExpLeft, MatrixLowerTriangular >::operator[] | ( | Integer | i | ) | const [inline] |
The operator[] will perform lhs_ Op MatrixLowerTriangular(j) where Op Mult (*)
Definition at line 404 of file STK_TExpAlgebra.h.
References STK::Mult::apply(), STK::BinOpBase< Op, ExpLeft, ExpRight >::lhs_, and STK::BinOpBase< Op, ExpLeft, ExpRight >::rhs_.
00405 { 00406 Real aux = 0.0; 00407 for (Integer j = rhs_.compFirstVe(i); j<= rhs_.lastRow(); j++) 00408 aux += Mult::apply(lhs_[j], rhs_(j,i)); 00409 return aux; 00410 }
const ExpLeft& STK::BinOpBase< Mult, ExpLeft, MatrixLowerTriangular >::lhs_ [protected] |
Definition at line 389 of file STK_TExpAlgebra.h.
const MatrixLowerTriangular& STK::BinOpBase< Mult, ExpLeft, MatrixLowerTriangular >::rhs_ [protected] |
Definition at line 390 of file STK_TExpAlgebra.h.
1.5.8