Changeset a7348ca5 for src/fmat.h


Ignore:
Timestamp:
Feb 16, 2016, 9:47:46 PM (8 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
fc2d7fb
Parents:
4bf3731
Message:

src/fmat.c: add optimized fmat_vecmul

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/fmat.h

    r4bf3731 ra7348ca5  
    157157void fmat_copy(fmat_t *s, fmat_t *t);
    158158
     159/* compute the product of a matrix by a vector
     160
     161   \param s matrix to compute product with
     162   \param scale vector to compute product with
     163   \param output vector to store restults in
     164
     165*/
     166void fmat_vecmul(fmat_t *s, fvec_t *scale, fvec_t *output);
     167
    159168#ifdef __cplusplus
    160169}
Note: See TracChangeset for help on using the changeset viewer.