Wavelet - A library for online estimation of the Continuous Wavelet Transform  0.1-alpha

Table of Contents

Compiling the library

Dependencies

To compile the library, you need the following dependencies installed:

Compiling as a static/dynamic library

XCode

See the xcode project in "ide/xcode/"

CMake

The library can be built using CMake. In the root directory, type the following command to generate the Makefiles:

cmake . -G"Unix Makefiles"

The following commands can be used to build the static library and run the unit tests, and generate the documentation:

make
make tests

The following commands can be used to generate the developer documentation and the api documentation:

make doc
make docapi
Usage

The header file "wavelet_all.h" includes all useful headers of the library.

Building the Python Library

Dependencies
Building

The python module can be built using CMake. In the python directory, type the following command to generate the Makefiles and build the python module:

cmake . -G"Unix Makefiles"
make

The module should be installed in "${wavelet_root}/python/bin/"

Prev: Home | Next: Examples.