#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <AR/matrix.h>
Go to the source code of this file.
Functions | |
double | arVecInnerproduct (ARVec *x, ARVec *y) |
Computes the inner product of 2 vectors. |
double arVecInnerproduct | ( | ARVec * | x, |
ARVec * | y | ||
) |
Computes the inner product of 2 vectors.
computes the inner product of the two argument vectors. the operation done is a=x.y (and a is return)
x | first vector source |
y | second vector source |
Definition at line 18 of file lib/SRC/AR/vInnerP.c.