Example usage for org.apache.commons.math3.transform DctNormalization STANDARD_DCT_I

List of usage examples for org.apache.commons.math3.transform DctNormalization STANDARD_DCT_I

Introduction

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

Prototype

DctNormalization STANDARD_DCT_I

To view the source code for org.apache.commons.math3.transform DctNormalization STANDARD_DCT_I.

Click Source Link

Document

Should be passed to the constructor of FastCosineTransformer to use the standard normalization convention.

Usage

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

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