You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CMSIS-DSP/cmsisdsp/__init__.py

27 lines
704 B
Python

import cmsisdsp.version
from cmsisdsp_filtering import *
from cmsisdsp_matrix import *
from cmsisdsp_support import *
from cmsisdsp_statistics import *
from cmsisdsp_complexf import *
from cmsisdsp_basic import *
from cmsisdsp_controller import *
from cmsisdsp_transform import *
from cmsisdsp_interpolation import *
from cmsisdsp_quaternion import *
from cmsisdsp_fastmath import *
__version__ = cmsisdsp.version.__version__
# CMSIS-DSP Version used to build the wrapper
cmsis_dsp_version="1.10.0"
# Commit hash used to build the wrapper
commit_hash="f2fb4f86cee3a17fbb394c315c99b833249db44d"
# True if development version used
developmentVersion=True
__all__ = ["datatype", "fixedpoint", "mfcc"]