Table of Contents

Method Process

Namespace
Bonsai.Dsp
Assembly
Bonsai.Dsp.dll

Process<TArray>(IObservable<Tuple<TArray, TArray>>)

When overridden in a derived class, applies a binary transformation to all pairs of array-like objects in an observable sequence.

public abstract IObservable<TArray> Process<TArray>(IObservable<Tuple<TArray, TArray>> source) where TArray : Arr

Parameters

source IObservable<Tuple<TArray, TArray>>

A sequence containing the pairs of array-like objects for which to apply the binary transformation.

Returns

IObservable<TArray>

A sequence containing the results of the binary transformation.

Type Parameters

TArray

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