Table of Contents

Class GenerateLateralizedILDs

Namespace
CF
Assembly
Extensions.dll

Class GenerateLateralizedILDs contains the logic of the Bonsai node with the same name.

[Combinator]
[WorkflowElementCategory(ElementCategory.Source)]
public class GenerateLateralizedILDs
Inheritance
GenerateLateralizedILDs
Inherited Members

Properties

LogBase

public double LogBase { get; set; }

Property Value

double

NumSteps

public int NumSteps { get; set; }

Property Value

int

StepSize

public double StepSize { get; set; }

Property Value

double

UseLog

public bool UseLog { get; set; }

Property Value

bool

Methods

Process()

Generates an observable sequence which outputs an array of ILDs. This method is called when the node doesn't have an input data stream.

public IObservable<double[]> Process()

Returns

IObservable<double[]>

An observable sequence which sends a single event containing an array of ILD values.

Process<TSource>(IObservable<TSource>)

Generates an observable sequence which outputs an array of ILDs. This method is called when the node has an input data stream.

public IObservable<double[]> Process<TSource>(IObservable<TSource> source)

Parameters

source IObservable<TSource>

the input data stream.

Returns

IObservable<double[]>

An observable sequence which sends a single event containing an array of ILD values.

Type Parameters

TSource