Class BasePrimitiveEmStdOperator
java.lang.Object
io.deephaven.engine.table.impl.updateby.UpdateByOperator
io.deephaven.engine.table.impl.updateby.internal.BaseDoubleUpdateByOperator
io.deephaven.engine.table.impl.updateby.emstd.BasePrimitiveEmStdOperator
- Direct Known Subclasses:
ByteEmStdOperator
,CharEmStdOperator
,DoubleEmStdOperator
,FloatEmStdOperator
,IntEmStdOperator
,LongEmStdOperator
,ShortEmStdOperator
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionprotected final OperationControl
protected WritableColumnSource<Double>
protected WritableColumnSource<Double>
protected final double
protected double
protected final double
For EM operators, we can allow floating-point tick/time units.protected ColumnSource<?>
Fields inherited from class io.deephaven.engine.table.impl.updateby.internal.BaseDoubleUpdateByOperator
maybeInnerSource, outputSource
Fields inherited from class io.deephaven.engine.table.impl.updateby.UpdateByOperator
affectingColumns, forwardWindowScaleUnits, inputModifiedColumnSet, isWindowed, outputModifiedColumnSet, pair, rowRedirection, timestampColumnName
-
Constructor Summary
ConstructorDescriptionBasePrimitiveEmStdOperator
(@NotNull MatchPair pair, @NotNull String[] affectingColumns, @NotNull OperationControl control, @Nullable String timestampColumnName, double windowScaleUnits) An operator that computes an EM Std output from an input column using an exponential decay function. -
Method Summary
Modifier and TypeMethodDescriptionvoid
applyOutputShift
(@NotNull RowSet subRowSetToShift, long delta) Apply a shift to the operation.protected void
handleBadData
(@NotNull BasePrimitiveEmStdOperator.Context ctx, boolean isNull, boolean isNan) void
initializeCumulative
(UpdateByOperator.Context updateContext, long firstUnmodifiedKey, long firstUnmodifiedTimestamp, @NotNull RowSet bucketRowSet) Initialize the bucket context for a cumulative operatorvoid
initializeSources
(@NotNull Table source, @Nullable RowRedirection rowRedirection) Initialize this operator with a specific source table (and row redirection if needed).void
prepareForParallelPopulation
(RowSet changedRows) Prepare this operator output column for parallel updated.void
Indicate that the operation should start tracking previous values for ticking updates.Methods inherited from class io.deephaven.engine.table.impl.updateby.internal.BaseDoubleUpdateByOperator
clearOutputRows, getOutputColumns
Methods inherited from class io.deephaven.engine.table.impl.updateby.UpdateByOperator
copy, createInputModifiedColumnSet, createOutputModifiedColumnSet, extractDownstreamModifiedColumnSet, finishUpdate, getAffectingColumnNames, getFwdWindowUnits, getInputColumnNames, getInputModifiedColumnSet, getOutputColumnNames, getOutputModifiedColumnSet, getPrevWindowUnits, getTimestampColumnName, initializeRolling, makeUpdateContext, requiresRowPositions
-
Field Details
-
control
-
reverseWindowScaleUnits
protected final double reverseWindowScaleUnitsFor EM operators, we can allow floating-point tick/time units. -
opAlpha
protected final double opAlpha -
valueSource
-
opOneMinusAlpha
protected double opOneMinusAlpha -
emaSource
-
maybeEmaInnerSource
-
-
Constructor Details
-
BasePrimitiveEmStdOperator
public BasePrimitiveEmStdOperator(@NotNull @NotNull MatchPair pair, @NotNull @NotNull String[] affectingColumns, @NotNull @NotNull OperationControl control, @Nullable @Nullable String timestampColumnName, double windowScaleUnits) An operator that computes an EM Std output from an input column using an exponential decay function.- Parameters:
pair
- theMatchPair
that defines the input/output for this operationaffectingColumns
- the names of the columns that affect this emacontrol
- the control parameters for EM operatortimestampColumnName
- an optional timestamp column. If this is null, it will be assumed time is measured in integer ticks.windowScaleUnits
- the smoothing window for the EM operator. If notimestampColumnName
is provided, this is measured in ticks, otherwise it is measured in nanoseconds.
-
-
Method Details
-
initializeSources
public void initializeSources(@NotNull @NotNull Table source, @Nullable @Nullable RowRedirection rowRedirection) Description copied from class:UpdateByOperator
Initialize this operator with a specific source table (and row redirection if needed). This will be called exactly once per operator.- Overrides:
initializeSources
in classBaseDoubleUpdateByOperator
-
initializeCumulative
public void initializeCumulative(@NotNull UpdateByOperator.Context updateContext, long firstUnmodifiedKey, long firstUnmodifiedTimestamp, @NotNull @NotNull RowSet bucketRowSet) Description copied from class:UpdateByOperator
Initialize the bucket context for a cumulative operator- Overrides:
initializeCumulative
in classBaseDoubleUpdateByOperator
-
startTrackingPrev
public void startTrackingPrev()Description copied from class:UpdateByOperator
Indicate that the operation should start tracking previous values for ticking updates.- Overrides:
startTrackingPrev
in classBaseDoubleUpdateByOperator
-
applyOutputShift
Description copied from class:UpdateByOperator
Apply a shift to the operation.- Overrides:
applyOutputShift
in classBaseDoubleUpdateByOperator
-
prepareForParallelPopulation
Description copied from class:UpdateByOperator
Prepare this operator output column for parallel updated.- Overrides:
prepareForParallelPopulation
in classBaseDoubleUpdateByOperator
-
handleBadData
protected void handleBadData(@NotNull @NotNull BasePrimitiveEmStdOperator.Context ctx, boolean isNull, boolean isNan)
-