stainless-steel / dft

Licence: other
Discrete Fourier transform

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to dft

adorad
Fast, Expressive, & High-Performance Programming Language for those who dare
Stars: ✭ 54 (+116%)
Mutual labels:  science
homebrew-cheminformatics
Cheminformatics formulae for the Homebrew package manager
Stars: ✭ 19 (-24%)
Mutual labels:  science
pem-dataset1
Proton Exchange Membrane (PEM) Fuel Cell Dataset
Stars: ✭ 48 (+92%)
Mutual labels:  science
bsu
🎓Repository for university labs on FAMCS, BSU
Stars: ✭ 91 (+264%)
Mutual labels:  science
tales-science-data
Companion repo to the GitBook, notes on Data Science topics
Stars: ✭ 41 (+64%)
Mutual labels:  science
aletheia-app
Alethia peer to peer publishing platform
Stars: ✭ 46 (+84%)
Mutual labels:  science
scipp
Multi-dimensional data arrays with labeled dimensions
Stars: ✭ 55 (+120%)
Mutual labels:  science
cytoscape-sbgn-stylesheet
View biological networks via Cytoscape.js and sbgn-ml
Stars: ✭ 47 (+88%)
Mutual labels:  science
simple-spectro
Very cheap, autonomous and precise spectrophotometer for DIY biology and chemistry.
Stars: ✭ 36 (+44%)
Mutual labels:  science
PyCORN
A script to extract data from ÄKTA/UNICORN result-files (.res)
Stars: ✭ 30 (+20%)
Mutual labels:  science
atacr
Analysing Capture Seq Count Data
Stars: ✭ 14 (-44%)
Mutual labels:  science
covid19 scenarios data
Data preprocessing scripts and preprocessed data storage for COVID-19 Scenarios project
Stars: ✭ 43 (+72%)
Mutual labels:  science
intel-mkl-src
Redistribute Intel MKL as a crate
Stars: ✭ 52 (+108%)
Mutual labels:  science
typescript-transform-jsx
Typescript transform jsx to string
Stars: ✭ 22 (-12%)
Mutual labels:  transform
curvit
Create light curves from UVIT data.
Stars: ✭ 14 (-44%)
Mutual labels:  science
AlertaDengue
Portal de dados do Projeto Alerta Dengue
Stars: ✭ 16 (-36%)
Mutual labels:  science
fftw
FFTW3 binding for Rust
Stars: ✭ 46 (+84%)
Mutual labels:  science
navis
Python 3 library for analysis of neuroanatomical data
Stars: ✭ 68 (+172%)
Mutual labels:  transform
OOMMFTools
OOMMFTools is a set of utilities designed to assist OOMMF postprocessing
Stars: ✭ 15 (-40%)
Mutual labels:  science
babel-plugin-transform-for-of-as-array
Transform all for-of loops into the equivalent array for loop
Stars: ✭ 14 (-44%)
Mutual labels:  transform

DFT Package Documentation Build

The package provides an algorithm to compute the discrete Fourier transform.

Example

use dft::{Operation, Plan, c64};

let plan = Plan::new(Operation::Forward, 512);
let mut data = vec![c64::new(42.0, 69.0); 512];
dft::transform(&mut data, &plan);

Contribution

Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].