Changes in src/fmat.h [147afba:5f852c1]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/fmat.h
r147afba r5f852c1 161 161 \param s matrix to compute product with 162 162 \param scale vector to compute product with 163 \param output vector of results 164 163 \param output vector to store restults in 165 164 166 165 */ 167 166 void fmat_vecmul(const fmat_t *s, const fvec_t *scale, fvec_t *output); 168 169 /** compute the product of a vector by a matrix170 171 \param s matrix to compute product with172 \param scale input to compute product with173 \param output vector of results174 175 */176 void fvec_matmul(const fvec_t *scale, const fmat_t *s, fvec_t *output);177 167 178 168 #ifdef __cplusplus
Note: See TracChangeset
for help on using the changeset viewer.