Parallel
wavelet.asc
Associated article: The Fast Wavelet Transform
Tags: Parallel
_THE FAST WAVELET TRANSFORM_
by Mac A. Cody
[LISTING ONE]
#define WAVE_MGT
#include <alloc.h>
#include "wave_mgt.h"
double **BuildTreeStorage(int inlength, int levels)
{
double **tree;
int i, j;
/* create decomposition tree */
tree = (double **) ...


