Go to the source code of this file.
Data Structures | |
class | allocVector |
Tiny, silly utility class for dynamically allocating vectors. More... | |
Typedefs | |
typedef double | real |
Functions | |
void | copy (int n, real *c, const real *a) |
c=a | |
void | sub (int n, real *c, const real *a, const real *b) |
c=a-b | |
void | fma (int n, real *c, const real *a, double k, const real *b) |
c=a+k*b (floating-point multiply-add) | |
real | dot (int n, const real *a, const real *b) |
Take the dot product of these two vectors:. |
typedef double real |
Definition at line 10 of file ilsi_vec.h.
c=a-b
Definition at line 18 of file ilsi_vec.h.
Referenced by cgSolver::cgSolver().
c=a+k*b (floating-point multiply-add)
Definition at line 22 of file ilsi_vec.h.
Referenced by cgSolver::iterate().
Take the dot product of these two vectors:.
Definition at line 29 of file ilsi_vec.h.
Referenced by vector2d::cosAng(), PUPbytes(), tetVolume(), and cg3d::tetVolume().