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