Table of Contents

Class ArrayTransform

Namespace
Bonsai.Dsp
Assembly
Bonsai.Dsp.dll

Provides an abstract base class for operators that transform sequences of array-like objects.

[Combinator]
[WorkflowElementCategory(ElementCategory.Transform)]
public abstract class ArrayTransform
Inheritance
ArrayTransform
Derived
Inherited Members

Methods

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.