LinAlgebra.h 374 B

123456789101112
  1. #ifndef _LIN_ALGEBRA_H_
  2. #define _LIN_ALGEBRA_H_
  3. #include "types.h"
  4. pyReal vecScalarProduct(const pyWord size, const pyReal * a, const pyReal * b);
  5. pyReal vecNorm(const pyWord size, const pyReal * a);
  6. pyReal vecDistSquared(const pyWord size, const pyReal * a, const pyReal * b);
  7. void vecSubst(const pyWord size, pyReal * dst, const pyReal * a, const pyReal * b );
  8. #endif