Click or drag to resize

TimbreBasicNote Method

Generates a basic note for the given frequency and time.

Namespace: GSF.Media.Music
Assembly: GSF.Media (in GSF.Media.dll) Version: 2.4.181-beta
Syntax
public static double BasicNote(
	double frequency,
	long sampleIndex,
	long samplePeriod,
	int sampleRate
)
View Source

Parameters

frequency  Double
Fundamental frequency of the desired note in Hz.
sampleIndex  Int64
Sample index (represents time anywhere from zero to full length of song).
samplePeriod  Int64
If useful, total period for note in whole samples per second (i.e., seconds of time * sampleRate) over which to compute timbre.
sampleRate  Int32
Number of samples per second.

Return Value

Double
The amplitude for a basic note at the given time.
Remarks

This method computes an amplitude representing the acoustic pressure of a basic note of the given frequency for the given time.

This timbre algorithm combines the simulated piano and the odd harmonic series algoriths to produce a pleasant sounding note.

See Also