MyraMath
Classes
DifferenceAction.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 DifferenceAction.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_DifferenceAction (const Action< NumberS > &A, const Action< NumberS > &B)
 Returns a DifferenceAction that applies A-B.
 
Action< NumberD > myra::make_DifferenceAction (const Action< NumberD > &A, const Action< NumberD > &B)
 Returns a DifferenceAction that applies A-B.
 
Action< NumberC > myra::make_DifferenceAction (const Action< NumberC > &A, const Action< NumberC > &B)
 Returns a DifferenceAction that applies A-B.
 
Action< NumberZ > myra::make_DifferenceAction (const Action< NumberZ > &A, const Action< NumberZ > &B)
 Returns a DifferenceAction that applies A-B.
 
Action< NumberS > myra::operator- (const Action< NumberS > &A, const Action< NumberS > &B)
 Overloads operator- for Action, returns a DifferenceAction.
 
Action< NumberD > myra::operator- (const Action< NumberD > &A, const Action< NumberD > &B)
 Overloads operator- for Action, returns a DifferenceAction.
 
Action< NumberC > myra::operator- (const Action< NumberC > &A, const Action< NumberC > &B)
 Overloads operator- for Action, returns a DifferenceAction.
 
Action< NumberZ > myra::operator- (const Action< NumberZ > &A, const Action< NumberZ > &B)
 Overloads operator- for Action, returns a DifferenceAction.
 

Detailed Description

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