Class Exp
Represents an operator that calculates the exponent of every element in the sequence.
public class Exp : ArrayTransform
- Inheritance
-
Exp
- Inherited Members
Methods
Process(IObservable<double>)
Calculates the exponent of each 64-bit floating-point number in the sequence.
public IObservable<double> Process(IObservable<double> source)
Parameters
source
IObservable<double>A sequence of 64-bit floating-point numbers.
Returns
- IObservable<double>
A sequence of 64-bit floating-point numbers, where each value represents
e
raised to the corresponding power. See Exp(double).
Process<TArray>(IObservable<TArray>)
Calculates the exponent of individual elements for all arrays in the sequence.
public override IObservable<TArray> Process<TArray>(IObservable<TArray> source) where TArray : Arr
Parameters
source
IObservable<TArray>A sequence of multi-channel array values.
Returns
- IObservable<TArray>
A sequence of multi-channel array values, where each element of the array represents
e
raised to the corresponding power.
Type Parameters
TArray
The type of the array-like objects in the
source
sequence.