Table of Contents

Method Process

Namespace
Bonsai.Dsp
Assembly
Bonsai.Dsp.dll

Process<TArray>(IObservable<TArray>)

Calculates the cumulative sum of the arrays in an observable sequence and returns each intermediate result.

public override IObservable<TArray> Process<TArray>(IObservable<TArray> source) where TArray : Arr

Parameters

source IObservable<TArray>

A sequence of multi-channel array values.

Returns

IObservable<TArray>

A sequence of multi-channel array values, where each array stores the cumulative sum of all previous array values in the source sequence.

Type Parameters

TArray

The type of the array-like objects in the source sequence.