COMPUTE AVERAGE VALUE BETWEEN TWO X VALUES FOR THE CURVES

Computes the average (mean) y-value of one or more curves over a specified x-axis interval [x_min, x_max], skipping all points outside that range. Use this worker whenever you need a scalar summary statistic for a curve segment, such as mean force or mean acceleration over a time window.

When to use

Classification: process.

Tagged: average, curve_reduction, interval, mean, scalar_extraction, x_range.

Inputs

Label ID Type Default Required Description
Curves curves vector One or more input curves (x/y pairs) over which the average will be computed; supply all curves whose mean y-value within the x window is required.
X Min x_min float 0.0   Lower bound of the x-axis integration window (same units as the curve’s x-axis); data points with x < x_min are excluded — defaults to 0.0.
X Max x_max float 1.0   Upper bound of the x-axis integration window (same units as the curve’s x-axis); data points with x > x_max are excluded — defaults to 1.0.

Outputs

Label ID Type Description
curves_average_between_output_1 curves_average_between_output_1 dataset Dataset containing one row per input curve with the computed average y-value over the [x_min, x_max] interval.

Disciplines

  • data.curve.transform
  • data.statistics

Runnable example

A runnable example is registered for this worker. Open the example workflow on the d3VIEW canvas: /api/workflow/example?id=curves_average_between


Auto-generated from transformation schema. Worker id: curves_average_between. Schema hash: 5717534f8c5e. Hand-curated docs in workerexamples/ override this page when present.