Updateable Cholesky decomposition: A=LDL'. More...
#include "vnl_ldl_cholesky.h"
#include <vcl_cmath.h>
#include <vcl_cassert.h>
#include <vcl_iostream.h>
#include <vnl/algo/vnl_netlib.h>
Go to the source code of this file.
Functions | |
double | dot (const double *v1, const double *v2, unsigned n) |
Sum of v1[i]*v2[i] (i=0..n-1). | |
double | dot (const double *v1, unsigned s, const double *v2, unsigned n) |
Sum of v1[i*s]*v2[i] (i=0..n-1). |
Updateable Cholesky decomposition: A=LDL'.
Definition in file vnl_ldl_cholesky.cxx.
double dot | ( | const double * | v1, |
const double * | v2, | ||
unsigned | n | ||
) | [inline] |
Sum of v1[i]*v2[i] (i=0..n-1).
Definition at line 75 of file vnl_ldl_cholesky.cxx.
double dot | ( | const double * | v1, |
unsigned | s, | ||
const double * | v2, | ||
unsigned | n | ||
) | [inline] |
Sum of v1[i*s]*v2[i] (i=0..n-1).
Definition at line 82 of file vnl_ldl_cholesky.cxx.