Signal Processing Extensions.Discrete Sine Transform Method
Computes the discrete sine transform (DST) of a vector.
This implementation uses an FFT-based method to compute the DST-II.
Definition
Namespace: Numerics.NET.SignalProcessing
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
The discrete sine transform (DST) of x.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
public static Vector<double> DiscreteSineTransform(
this Vector<double> x,
bool orthonormal = true
)
Parameters
- x Vector<Double>
- The vector to transform.
- orthonormal Boolean (Optional)
- Optional. Specifies whether the transform should be orthogonal/unitary. The default is true.
Return Value
Vector<Double>The discrete sine transform (DST) of x.