source:
doc/py_datatypes.rst
@
9b05ea9
Last change on this file since 9b05ea9 was 6d4802f, checked in by , 6 years ago | |
---|---|
|
|
File size: 1001 bytes |
Data-types
.. default-domain:: py
.. currentmodule:: aubio
This section contains the documentation for :data:`float_type`, :class:`fvec`, and :class:`cvec`.
.. data:: float_type A string constant describing the floating-point representation used in :class:`fvec`, :class:`cvec`, and elsewhere in this module. Defaults to `"float32"`. If `aubio` was built specifically with the option `--enable-double`, this string will be defined to `"float64"`. See :ref:`py-doubleprecision` in :ref:`python-install` for more details on building aubio in double precision mode. .. rubric:: Examples >>> aubio.float_type 'float32' >>> numpy.zeros(10).dtype 'float64' >>> aubio.fvec(10).dtype 'float32' >>> np.arange(10, dtype=aubio.float_type).dtype 'float32'
.. autoclass:: fvec :members:
.. autoclass:: cvec :members:
Note: See TracBrowser
for help on using the repository browser.