- Linear regression and least squares method
- Interpolation and signal reconstruction from samples
- Discrete convolution
- Discrete cross correlation
http://dsp.titandesign.eu (Czech language)
Ensure you have Node installed, then;
git clone https://github.com/xpacman/dsp-visual
Install node modules
npm install
Start the server
npm start
// Or for Webpack Dashboard
npm run dev
Open your browser to http://localhost:8111. You can change the hostname and port by editing the values in the .env file.
To build production ready assets, simply run:
npm run build
This will build a uglified app-[hash].js and a minified app-[hash].css and automatically create a index.html linking these files for you in a build/ directory.
The build/ directory is .gitignore'd by default, and purged before every build.
npm start- start the dev servernpm run clean- delete thebuildfoldernpm run lint- run a eslint checknpm test- run all testsnpm run dev- start the dev server using webpack dashboardnpm run build- create a production ready build in thebuildfolder