annotate libs/aubioFullOSXUni/include/aubio/scale.h @ 2:fa2af670b5c5 tip

SoundFileLoader might have moved
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Fri, 06 Jan 2012 00:23:26 +0000
parents bcb0d40158f4
children
rev   line source
andrew@0 1 /*
andrew@0 2 Copyright (C) 2003 Paul Brossier
andrew@0 3
andrew@0 4 This program is free software; you can redistribute it and/or modify
andrew@0 5 it under the terms of the GNU General Public License as published by
andrew@0 6 the Free Software Foundation; either version 2 of the License, or
andrew@0 7 (at your option) any later version.
andrew@0 8
andrew@0 9 This program is distributed in the hope that it will be useful,
andrew@0 10 but WITHOUT ANY WARRANTY; without even the implied warranty of
andrew@0 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
andrew@0 12 GNU General Public License for more details.
andrew@0 13
andrew@0 14 You should have received a copy of the GNU General Public License
andrew@0 15 along with this program; if not, write to the Free Software
andrew@0 16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
andrew@0 17 */
andrew@0 18
andrew@0 19 /** \file
andrew@0 20
andrew@0 21 Vector scaling function
andrew@0 22
andrew@0 23 This object, inspired from the scale object in FTS, the jMax engine, scales
andrew@0 24 the values of a vector according to an affine function defined as follow:
andrew@0 25
andrew@0 26 \f$ y = (x - ilow)*(ohig-olow)/(ihig-ilow) + olow \f$
andrew@0 27
andrew@0 28 */
andrew@0 29 #ifndef SCALE_H
andrew@0 30 #define SCALE_H
andrew@0 31
andrew@0 32 #ifdef __cplusplus
andrew@0 33 extern "C" {
andrew@0 34 #endif
andrew@0 35
andrew@0 36 /** scale object */
andrew@0 37 typedef struct _aubio_scale_t aubio_scale_t;
andrew@0 38
andrew@0 39 /** create a scale object
andrew@0 40
andrew@0 41 \param flow lower value of output function
andrew@0 42 \param fhig higher value of output function
andrew@0 43 \param ilow lower value of input function
andrew@0 44 \param ihig higher value of output function
andrew@0 45
andrew@0 46 */
andrew@0 47 aubio_scale_t * new_aubio_scale(smpl_t flow, smpl_t fhig, smpl_t ilow, smpl_t ihig );
andrew@0 48 /** delete a scale object
andrew@0 49
andrew@0 50 \param s scale object as returned by new_aubio_scale
andrew@0 51
andrew@0 52 */
andrew@0 53 void del_aubio_scale(aubio_scale_t *s);
andrew@0 54 /** scale input vector
andrew@0 55
andrew@0 56 \param s scale object as returned by new_aubio_scale
andrew@0 57 \param input vector to scale
andrew@0 58
andrew@0 59 */
andrew@0 60 void aubio_scale_do(aubio_scale_t *s, fvec_t * input);
andrew@0 61 /** modify scale parameters after object creation
andrew@0 62
andrew@0 63 \param s scale object as returned by new_aubio_scale
andrew@0 64 \param olow lower value of output function
andrew@0 65 \param ohig higher value of output function
andrew@0 66 \param ilow lower value of input function
andrew@0 67 \param ihig higher value of output function
andrew@0 68
andrew@0 69 */
andrew@0 70 void aubio_scale_set (aubio_scale_t *s, smpl_t ilow, smpl_t ihig, smpl_t olow, smpl_t ohig);
andrew@0 71
andrew@0 72 #ifdef __cplusplus
andrew@0 73 }
andrew@0 74 #endif
andrew@0 75
andrew@0 76 #endif