[229d050] | 1 | #! /usr/bin/env python |
---|
[7cfad8e] | 2 | # -*- coding: utf8 -*- |
---|
| 3 | |
---|
| 4 | """ |
---|
| 5 | aubio |
---|
| 6 | ===== |
---|
| 7 | |
---|
| 8 | Provides a number of classes and functions for music and audio signal |
---|
| 9 | analysis. |
---|
| 10 | |
---|
| 11 | How to use the documentation |
---|
| 12 | ---------------------------- |
---|
| 13 | |
---|
| 14 | Documentation of the python module is available as docstrings provided |
---|
| 15 | within the code, and a reference guide available online from `the |
---|
| 16 | aubio homepage <https://aubio.org/documentation>`_. |
---|
| 17 | |
---|
| 18 | The docstrings examples are written assuming `aubio` and `numpy` have been |
---|
| 19 | imported with: |
---|
| 20 | |
---|
| 21 | >>> import aubio |
---|
| 22 | >>> import numpy as np |
---|
| 23 | """ |
---|
[229d050] | 24 | |
---|
[ccca7cb] | 25 | import numpy |
---|
[883b499] | 26 | from ._aubio import __version__ as version |
---|
[b96a7b8] | 27 | from ._aubio import float_type |
---|
[883b499] | 28 | from ._aubio import * |
---|
[4de5f35] | 29 | from .midiconv import * |
---|
| 30 | from .slicing import * |
---|
[ccca7cb] | 31 | |
---|
| 32 | class fvec(numpy.ndarray): |
---|
[7a54b37] | 33 | """fvec(input_arg=1024) |
---|
[78c1d32] | 34 | A vector holding float samples. |
---|
[8bffcff] | 35 | |
---|
[78c1d32] | 36 | If `input_arg` is an `int`, a 1-dimensional vector of length `input_arg` |
---|
| 37 | will be created and filled with zeros. Otherwise, if `input_arg` is an |
---|
| 38 | `array_like` object, it will be converted to a 1-dimensional vector of |
---|
| 39 | type :data:`float_type`. |
---|
| 40 | |
---|
| 41 | Parameters |
---|
| 42 | ---------- |
---|
| 43 | input_arg : `int` or `array_like` |
---|
| 44 | Can be a positive integer, or any object that can be converted to |
---|
| 45 | a numpy array with :func:`numpy.array`. |
---|
| 46 | |
---|
| 47 | Examples |
---|
| 48 | -------- |
---|
| 49 | >>> aubio.fvec(10) |
---|
| 50 | array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], dtype=float32) |
---|
| 51 | >>> aubio.fvec([0,1,2]) |
---|
| 52 | array([0., 1., 2.], dtype=float32) |
---|
| 53 | >>> a = np.arange(10); type(a), type(aubio.fvec(a)) |
---|
| 54 | (<class 'numpy.ndarray'>, <class 'numpy.ndarray'>) |
---|
| 55 | >>> a.dtype, aubio.fvec(a).dtype |
---|
| 56 | (dtype('int64'), dtype('float32')) |
---|
| 57 | |
---|
| 58 | Notes |
---|
| 59 | ----- |
---|
| 60 | |
---|
| 61 | In the Python world, `fvec` is simply a subclass of |
---|
| 62 | :class:`numpy.ndarray`. In practice, any 1-dimensional `numpy.ndarray` of |
---|
| 63 | `dtype` :data:`float_type` may be passed to methods accepting |
---|
| 64 | `fvec` as parameter. For instance, `sink()` or `pvoc()`. |
---|
| 65 | |
---|
| 66 | See Also |
---|
| 67 | -------- |
---|
| 68 | cvec : a container holding spectral data |
---|
| 69 | numpy.ndarray : parent class of :class:`fvec` |
---|
| 70 | numpy.zeros : create a numpy array filled with zeros |
---|
| 71 | numpy.array : create a numpy array from an existing object |
---|
| 72 | """ |
---|
[7a54b37] | 73 | def __new__(cls, input_arg=1024): |
---|
[143682b] | 74 | if isinstance(input_arg, int): |
---|
[b96a7b8] | 75 | if input_arg == 0: |
---|
| 76 | raise ValueError("vector length of 1 or more expected") |
---|
[7a54b37] | 77 | return numpy.zeros(input_arg, dtype=float_type, order='C') |
---|
[143682b] | 78 | else: |
---|
[7a54b37] | 79 | np_input = numpy.array(input_arg, dtype=float_type, order='C') |
---|
| 80 | if len(np_input.shape) != 1: |
---|
| 81 | raise ValueError("input_arg should have shape (n,)") |
---|
| 82 | if np_input.shape[0] == 0: |
---|
| 83 | raise ValueError("vector length of 1 or more expected") |
---|
| 84 | return np_input |
---|