24 dmatrix tmp(imin, imax, jmin, jmax);
27 double* pv1i = v1.
get_v() + imin;
28 for (
int i = imin; i <= imax; ++i)
30 double* ptmpij = ptmpi->
get_v() + jmin;
31 double* pv2j = v2.
get_v() + jmin;
32 for (
int j = jmin; j <= jmax; ++j)
34 *ptmpij = *pv1i * *pv2j;
Vector of double precision numbers.
int indexmin() const
Get minimum valid index.
int indexmax() const
Get maximum valid index.
Author: David Fournier Copyright (c) 2008-2012 Regents of the University of California.
dmatrix outer_prod(const dvector &v1, const dvector &v2)
Description not yet available.
Description not yet available.