Workspace 6.21.5
|
Constructs a DataSeries from one or more double-precision input values. This operation can be run inside a loop with the "Accumulate each update" input enabled in order to accumulate input values each time it is run.
Inputs: | |||
---|---|---|---|
Accumulate each update | bool | If enabled, this input tells the operation to append its input values to the output DataSeries each time it is executed, without first clearing them. This allows the operation to be placed inside a CountedLoop, WhileLoop or other loop in order to build a DataSeries in an iterative fashion. | |
Reset accumulation | CSIRO::DataExecution::Dependency | Whenever this Dependency input is triggered, the operation will clear the output DataSeries. This input only has an affect if the "Accumulate each update"is active. | |
Values to add | Array | double | An array input of doubles which will be appended to the DataSeries when this operation executes. |
Outputs: | |||
Result | QVector<double> |