Accord.Audio.Signal.Signal C# (CSharp) Method

Signal() public method

Constructs a new signal.
public Signal ( byte data, int channels, int length, int sampleRate, SampleFormat format ) : System
data byte The raw data for the signal.
channels int The number of channels for the signal.
length int The length of the signal.
sampleRate int The sample date of the signal.
format SampleFormat The sample format for the signal.
return System
        public Signal(byte[] data, int channels, int length, int sampleRate, SampleFormat format)
        {
            init(data, channels, length, sampleRate, format);
        }

Same methods

Signal::Signal ( int channels, int length, int sampleRate, SampleFormat format ) : System