All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.alink.operator.batch.dataproc.DCTBatchOp Maven / Gradle / Ivy

package com.alibaba.alink.operator.batch.dataproc;

import org.apache.flink.ml.api.misc.param.Params;

import com.alibaba.alink.operator.common.feature.DCTMapper;
import com.alibaba.alink.operator.batch.utils.MapBatchOp;
import com.alibaba.alink.params.feature.DCTParams;

/**
 * Discrete Cosine Transform(DCT) transforms a real-valued sequence in the time domain into another real-valued sequence
 * with same length in the frequency domain.
 */
public class DCTBatchOp extends MapBatchOp 
	implements DCTParams  {

	public DCTBatchOp() {
		this(null);
	}

	public DCTBatchOp(Params params) {
		super(DCTMapper::new, params);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy