Table of Contents

Method Process

Namespace
Bonsai.Dsp
Assembly
Bonsai.Dsp.dll

Process<TArray>(IObservable<TArray>)

When overridden in a derived class, returns a sequence of array-like objects where each element is a transformation of the corresponding array in the original sequence.

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

Parameters

source IObservable<TArray>

The sequence of array-like objects to be transformed.

Returns

IObservable<TArray>

A sequence of the transformed array-like objects.

Type Parameters

TArray

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