index.rst 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. .. cmsisdsp documentation master file, created by
  2. sphinx-quickstart on Mon Feb 14 11:09:26 2022.
  3. You can adapt this file completely to your liking, but it should at least
  4. contain the root `toctree` directive.
  5. Welcome to CMSIS-DSP PythonWrapper's documentation!
  6. ===================================================
  7. **cmsisdsp** is a Python wrapper for the Arm `CMSIS-DSP API <https://github.com/ARM-software/CMSIS_5/tree/develop/CMSIS/DSP>`_. With **cmsisdsp** you can run the `CMSIS-DSP API <https://github.com/ARM-software/CMSIS_5/tree/develop/CMSIS/DSP>`_ functions in Python. The functions are compatible with NumPy.
  8. The APIs of the functions in package **cmsisdsp** are as close as possible to the C versions to make it easier to migrate the Python implementation of your code to an equivalent C one running on the embedded target.
  9. In addition to the Python interface to the C functions, there are additional submodules.
  10. * :doc:`fixedpoint.py <fixedpoint>` is providing some tools to help generating the fixedpoint values expected
  11. by CMSIS-DSP.
  12. * :doc:`mfcc.py <mfcc>` is generating some tools to generate the MEL filters, DCT and window coefficients
  13. expected by the CMSIS-DSP MFCC implementation.
  14. Table of contents
  15. *****************
  16. .. toctree::
  17. Python API to C functions <api>
  18. datatype.py <datatype>
  19. fixedpoint.py <fixedpoint>
  20. mfcc.py <mfcc>
  21. .. note::
  22. This project is under development.