Click or drag to resize
Accord.NET (logo)

MelFrequencyCepstrumCoefficient Constructor

Initializes a new instance of the MFCC class.

Namespace:  Accord.Audio
Assembly:  Accord.Audio (in Accord.Audio.dll) Version: 3.8.0
Syntax
public MelFrequencyCepstrumCoefficient(
	int filterCount = 40,
	int cepstrumCount = 13,
	double lowerFrequency = 133.3333,
	double upperFrequency = 6855.4976,
	double alpha = 0.97,
	int samplingRate = 16000,
	int frameRate = 100,
	double windowLength = 0.0256,
	int numberOfBins = 512
)
Request Example View Source

Parameters

filterCount (Optional)
Type: SystemInt32
The filter count.
cepstrumCount (Optional)
Type: SystemInt32
The cepstrum count.
lowerFrequency (Optional)
Type: SystemDouble
The lower frequency.
upperFrequency (Optional)
Type: SystemDouble
The upper frequency.
alpha (Optional)
Type: SystemDouble
The alpha.
samplingRate (Optional)
Type: SystemInt32
The sampling rate.
frameRate (Optional)
Type: SystemInt32
The frame rate.
windowLength (Optional)
Type: SystemDouble
Length of the window.
numberOfBins (Optional)
Type: SystemInt32
The number of bins.
See Also