Table of Contents

Class Abs

Namespace
Bonsai.Dsp
Assembly
Bonsai.Dsp.dll

Represents an operator that calculates the absolute value of each element in the sequence.

public class Abs : ArrayTransform
Inheritance
Abs
Inherited Members

Methods

Process(IObservable<decimal>)

Calculates the absolute value of each decimal number in the sequence.

Process(IObservable<double>)

Calculates the absolute value of each 64-bit floating-point number in the sequence.

Process(IObservable<short>)

Calculates the absolute value of each 16-bit signed integer in the sequence.

Process(IObservable<int>)

Calculates the absolute value of each 32-bit signed integer in the sequence.

Process(IObservable<long>)

Calculates the absolute value of each 64-bit signed integer in the sequence.

Process(IObservable<sbyte>)

Calculates the absolute value of each 8-bit signed integer in the sequence.

Process(IObservable<float>)

Calculates the absolute value of each 32-bit floating-point number in the sequence.

Process<TArray>(IObservable<TArray>)

Calculates the absolute value of individual elements for all arrays in the sequence.