Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/fvec.h

    r7166ef8 r941c9f9  
    11/*
    2   Copyright (C) 2003-2015 Paul Brossier <piem@aubio.org>
     2  Copyright (C) 2003-2013 Paul Brossier <piem@aubio.org>
    33
    44  This file is part of aubio.
     
    8787
    8888  \param s vector to read from
    89   \param position sample position to read from
     89  \param position sample position to read from 
    9090
    9191*/
     
    9494/** write sample value in a buffer
    9595
    96   \param s vector to write to
     96  \param s vector to write to 
    9797  \param data value to write in s->data[position]
    98   \param position sample position to write to
     98  \param position sample position to write to 
    9999
    100100*/
     
    108108smpl_t * fvec_get_data(fvec_t *s);
    109109
    110 /** print out fvec data
     110/** print out fvec data 
    111111
    112   \param s vector to print out
     112  \param s vector to print out 
    113113
    114114*/
     
    123123void fvec_set_all (fvec_t *s, smpl_t val);
    124124
    125 /** set all elements to zero
     125/** set all elements to zero 
    126126
    127127  \param s vector to modify
     
    130130void fvec_zeros(fvec_t *s);
    131131
    132 /** set all elements to ones
     132/** set all elements to ones 
    133133
    134134  \param s vector to modify
     
    163163void fvec_copy(fvec_t *s, fvec_t *t);
    164164
    165 /** make a copy of a vector, applying weights to each element
    166 
    167   \param in input vector
    168   \param weight weights vector
    169   \param out output vector
    170 
    171 */
    172 void fvec_weighted_copy(fvec_t *in, fvec_t *weight, fvec_t *out);
    173 
    174165#ifdef __cplusplus
    175166}
Note: See TracChangeset for help on using the changeset viewer.