Skip to content

dwaithe/multipletau

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

multipletau

This repo contains a multiple-tau algorithm for Python

  • multipletau multiple-tau package, implemented using numpy
  • test testing the algorithm
  • doc the source of the documentation

Installation

The package can be installed from the Python package index.

pip install multipletau

Usage

>>> import numpy as np
>>> import multipletau
>>> a = np.linspace(2,5,42)
>>> v = np.linspace(1,6,42)
>>> multipletau.correlate(a, v, m=2)
array([[   1.        ,  549.87804878],
       [   2.        ,  530.37477692],
       [   4.        ,  491.85812017],
       [   8.        ,  386.39500297]])