MyraMath
Classes
SumAction.h File Reference

Composes two Action's A and B, yielding an Action that applies (A+B)*X. More...

#include <myramath/MYRAMATH_EXPORT.h>
#include <myramath/utility/Number.h>
Include dependency graph for SumAction.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  myra::Action< Number >
 Applies the "Action" of a linear operator, b := A*x. More...
 

Functions

Action< NumberS > myra::make_SumAction (const Action< NumberS > &A, const Action< NumberS > &B)
 Returns a SumAction that applies A+B.
 
Action< NumberD > myra::make_SumAction (const Action< NumberD > &A, const Action< NumberD > &B)
 Returns a SumAction that applies A+B.
 
Action< NumberC > myra::make_SumAction (const Action< NumberC > &A, const Action< NumberC > &B)
 Returns a SumAction that applies A+B.
 
Action< NumberZ > myra::make_SumAction (const Action< NumberZ > &A, const Action< NumberZ > &B)
 Returns a SumAction that applies A+B.
 
Action< NumberS > myra::operator+ (const Action< NumberS > &A, const Action< NumberS > &B)
 Overloads operator+ for Action, returns a SumAction.
 
Action< NumberD > myra::operator+ (const Action< NumberD > &A, const Action< NumberD > &B)
 Overloads operator+ for Action, returns a SumAction.
 
Action< NumberC > myra::operator+ (const Action< NumberC > &A, const Action< NumberC > &B)
 Overloads operator+ for Action, returns a SumAction.
 
Action< NumberZ > myra::operator+ (const Action< NumberZ > &A, const Action< NumberZ > &B)
 Overloads operator+ for Action, returns a SumAction.
 

Detailed Description

Composes two Action's A and B, yielding an Action that applies (A+B)*X.