Mercurial > repos > nick > duplex
comparison mafft/core/fft.h @ 18:e4d75f9efb90 draft
planemo upload commit b'4303231da9e48b2719b4429a29b72421d24310f4\n'-dirty
author | nick |
---|---|
date | Thu, 02 Feb 2017 18:44:31 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
17:836fa4fe9494 | 18:e4d75f9efb90 |
---|---|
1 #include <stdio.h> | |
2 #include <stdlib.h> | |
3 #include <stddef.h> | |
4 #include <math.h> | |
5 #include "mtxutl.h" | |
6 | |
7 #define PI 3.14159265358979323846 | |
8 #define END_OF_VEC -1 | |
9 | |
10 #define NKOUHO 20 | |
11 #define NKOUHO_LONG 500 | |
12 | |
13 #define MAX(X,Y) ( ((X)>(Y))?(X):(Y) ) | |
14 #define MIN(X,Y) ( ((X)<(Y))?(X):(Y) ) | |
15 |