Toolbox for Maths,Signal,Image Teaching @ CPE
Project description
A toolbox used for practical sessions at CPE Lyon. Developped and maintained for teaching usage only!
Installation
In a Jupyter Notebook
!pip install -i https://test.pypi.org/simple/ -U msicpe
In a local environment
pip install -i https://test.pypi.org/simple/ -U msicpe
Usage example
The example below uses the kurtosis method available in the tsa
subpackage of msicpe
.
It requires numpy.randn
to generate a gaussian distribution of N points.
import numpy as np
from msicpe.tsa import kurtosis
N=10000
x=np.randn(1,N)
kurt=kurtosis(x)
print(kurt)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
msicpe-0.1.6.1.tar.gz
(795.9 kB
view hashes)
Built Distribution
msicpe-0.1.6.1-py3-none-any.whl
(799.9 kB
view hashes)