All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface jam.operator.BinaryOperator

public interface interface BinaryOperator
extends JamObject, Operator
Binary operator

See Also:
BiLinearOperator

Method Index

 o addImageBinary(Vector, Vector, Vector)
 o getDomain1()
 o getDomain2()
 o getOp1(Vector)
Returns the map d2 |---> A(d1,d2)
Alternate notation: A(d1,.) is the returned (unary) operator
 o getOp2(Vector)
Returns the linear map d1 |---> A(d1,d2)
Alternate notation: A(.,d2) is the returned (unary) operator
 o imageBinary(Vector, Vector)
 o imageBinary(Vector, Vector, Vector)
 o residualBinary(Vector, Vector, Vector, Vector)

Methods

 o getDomain1
 public abstract Space getDomain1()
 o getDomain2
 public abstract Space getDomain2()
 o imageBinary
 public abstract Vector imageBinary(Vector d1,
                                    Vector d2)
 o imageBinary
 public abstract void imageBinary(Vector d1,
                                  Vector d2,
                                  Vector r)
 o addImageBinary
 public abstract void addImageBinary(Vector d1,
                                     Vector d2,
                                     Vector r)
 o residualBinary
 public abstract void residualBinary(Vector d1,
                                     Vector d2,
                                     Vector b,
                                     Vector r)
 o getOp1
 public abstract Operator getOp1(Vector d1)
Returns the map d2 |---> A(d1,d2)
Alternate notation: A(d1,.) is the returned (unary) operator

 o getOp2
 public abstract Operator getOp2(Vector d2)
Returns the linear map d1 |---> A(d1,d2)
Alternate notation: A(.,d2) is the returned (unary) operator


All Packages  Class Hierarchy  This Package  Previous  Next  Index