Class GenerateLateralizedILDsFL
- Namespace
- CF
- Assembly
- Extensions.dll
Class GenerateLateralizedILDsFL contains the logic of the Bonsai node with the same name.
[Combinator]
[WorkflowElementCategory(ElementCategory.Source)]
public class GenerateLateralizedILDsFL
- Inheritance
-
GenerateLateralizedILDsFL
- Inherited Members
Properties
ILDs
public double[] ILDs { get; set; }
Property Value
- double[]
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
sourceIObservable<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