Example usage for org.apache.commons.math3.transform FastCosineTransformer FastCosineTransformer

List of usage examples for org.apache.commons.math3.transform FastCosineTransformer FastCosineTransformer

Introduction

In this page you can find the example usage for org.apache.commons.math3.transform FastCosineTransformer FastCosineTransformer.

Prototype

public FastCosineTransformer(final DctNormalization normalization) 

Source Link

Document

Creates a new instance of this class, with various normalization conventions.

Usage

From source file:ro.hasna.ts.math.representation.DiscreteCosineTransform.java

public DiscreteCosineTransform() {
    this(new FastCosineTransformer(DctNormalization.STANDARD_DCT_I));
}