Skip to content

vector and ensemble signal analysis w/ subspace methods such as Esprit and RootMusic

License

Notifications You must be signed in to change notification settings

COMHTVM/signal_subspace

 
 

Repository files navigation

Signal Subspace

Language grade: Python ci_python ci_meson ci_cmake

pypi versions PyPi Download stats

1-D and ensemble signal subspace analysis with methods such as Esprit and RootMusic in Fortran, C, and Python

based in part upon the Spectral Analysis Lib public domain code

The core subspace code is written in Fortran 2008 and is called from other languages (Python, C). Since the programs are Fortran / Python based, they should compile and run in virtually any platform from embedded to supercomputer.

In particular, this program (Fortran, called by C or C++ optionally) works from compilers including:

  • Gfortran (GCC)
  • Intel oneAPI (ifort, icc, icpc)

Build

Prereqs:

  • Linux: apt install liblapack-dev g++ gcc gfortran cmake
  • Mac: brew install lapack gcc cmake
  • Windows: use MSYS2 or Windows Subsystem for Linux
ctest -S setup.cmake -VV

Then you can test Python calling the Fortran libraries by:

pip install -e .

pytest -v

In the examples below, observe the frequency estimates printed along with their corresponding eigenvalues. A larger eigenvalue is increased confidence in that particular frequency estimate.

Fortran

ESPRIT example with noisy sinusoid

There are two versions of this program, one a full accuracy using double complex numbers, and the other using single real numbers as input. The single real (4 bytes/number) runs about 4 times faster than the double complex (16 bytes/number) program.

./f_esprit_cmpl

./f_esprit_real

C ESPRIT example with noisy sinusoid

Here is an example of calling Fortran Esprit from C, which uses real single precision float:

./c_esprit

C++ ESPRIT example with noisy sinusoid

Example of calling Fortran Esprit from C++, which uses real single precision float:

./cpp_esprit

Python

Compile Fortran ESPRIT to use from Python via f2py

pip install -e .

Selftest Fortran/C/C++/Python Esprit from Python:

pytest

Notes

/liblapack.so: undefined reference to `ATL_zgeru'

Try removing Atlas:

apt remove libatlas-base-dev

Flang / Clang / Clang++

You may need

apt install libc++abi-dev

Plots comparing Fortran to Python

python BasicEspritExample.py

About

vector and ensemble signal analysis w/ subspace methods such as Esprit and RootMusic

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 33.3%
  • Fortran 28.2%
  • CMake 24.8%
  • C++ 5.3%
  • Meson 2.6%
  • C 2.6%
  • Other 3.2%