S2kit  1.1
Toolkit for working with functions defined on the sphere
vector_funcs.h
Go to the documentation of this file.
1 #ifndef _VECTOR_FUNCS_H
2 #define _VECTOR_FUNCS_H
3 
4 void vec_add(double*, double*, double*, const int);
5 
6 void vec_mul(const double, double*, double*, const int);
7 
8 void vec_dot(double*, double*, double*, const int);
9 
10 #endif // _VECTOR_FUNCS_H
vec_dot
void vec_dot(double *, double *, double *, const int)
Performs dot product of v1 and v2.
Definition: vector_funcs.c:53
vec_mul
void vec_mul(const double, double *, double *, const int)
Multiplies the vector v by scalar.
Definition: vector_funcs.c:33
vec_add
void vec_add(double *, double *, double *, const int)
Adds two vectors into a third one.
Definition: vector_funcs.c:18