Transformations

object Transformations

Streaming and buffer transformations

Functions

cosine
Link copied to clipboard
fun cosine(normalization: DctNormalization = DctNormalization.STANDARD_DCT_I, direction: TransformType = TransformType.FORWARD): SuspendBufferTransform<Double, Double>
fourier
Link copied to clipboard
fun fourier(normalization: DftNormalization = DftNormalization.STANDARD, direction: TransformType = TransformType.FORWARD): SuspendBufferTransform<Complex, Complex>
hadamard
Link copied to clipboard
fun hadamard(direction: TransformType = TransformType.FORWARD): SuspendBufferTransform<Double, Double>
realFourier
Link copied to clipboard
fun realFourier(normalization: DftNormalization = DftNormalization.STANDARD, direction: TransformType = TransformType.FORWARD): SuspendBufferTransform<Double, Complex>
sine
Link copied to clipboard
fun sine(normalization: DstNormalization = DstNormalization.STANDARD_DST_I, direction: TransformType = TransformType.FORWARD): SuspendBufferTransform<Double, Double>

Sources

jvm source
Link copied to clipboard