Quick Start

Using Dew Math for .NET routines is a peace of cake. Now you can perform complex numeric tasks with only few function calls.

private void button1_Click(object sender, System.EventArgs e) {
    Vector x = new Vector(0);
    Vector y = new Vector(0);
    Vector spec = new Vector(0);
    // Please include the full path of the file.
    // The file is included with the MtxVec BasicDemo
    //from https://github.com/Dew-Research/DewLabStudio-NETFramework-Samples
    // distribution and has 8000 values only.
    y.LoadFromFile(@"C:MtxVecDemoFFTData.vec");
    //Alternative:
    //y.CopyFromArray(YourArrayOfdoubles);
    y.Resize(1024,false);
    x.FFT(y,false);
    spec.Mag(x);
    MtxVecTee.DrawValues(spec,fastLine1,0,1,false);
}

.\YourSolution\Packages\Dew.Math.x.y.z\runtimes

to corresponding folders:

C:\Windows\System32 for x64 bit

C:\Windows\SysWOW64 for x32 bit

Things to try: