SignalProcessingExtensions.DiscreteSineTransform 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#
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.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<Double>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also