public class RealTimesComplexVectorEvaluator extends AbstractComplexVectorEvaluator
Evaluator
evaluating a BinaryOperation
of type '*',
which first operand is a Real
and second operand is a
ComplexVector
when evaluated.Modifier and Type | Field and Description |
---|---|
protected Evaluator |
operand1Eval
The
Evaluator for the first operand of the BinaryOperation . |
protected Evaluator |
operand2Eval
The
Evaluator for the second operand of the BinaryOperation . |
Constructor and Description |
---|
RealTimesComplexVectorEvaluator(Evaluator e1,
Evaluator e2)
Creates a new
RealTimesComplexVectorEvaluator with the
specified operand Evaluators . |
Modifier and Type | Method and Description |
---|---|
Object |
evaluate()
Executes the product on the evaluation results of the given operand
Evaluators and returns the result as a ComplexVector
Object . |
getComplexVectorValue, getReturnType
protected Evaluator operand1Eval
Evaluator
for the first operand of the BinaryOperation
.protected Evaluator operand2Eval
Evaluator
for the second operand of the BinaryOperation
.public RealTimesComplexVectorEvaluator(Evaluator e1, Evaluator e2)
RealTimesComplexVectorEvaluator
with the
specified operand Evaluators
. Those operand
Evaluators
provide the values to be multiplied.e1
- the Evaluator
providing the first multiplier value.e2
- the Evaluator
providing the second multiplier value.public Object evaluate()
Evaluators
and returns the result as a ComplexVector
Object
.ComplexVector
Object
.AbstractComplexVectorEvaluator.getReturnType()