Open GoogleCodeExporter opened 9 years ago
Hi ben,
Thanks for clarifying this (and providing a solution). One question though:
I cannot seem to figure out where to place the provided exactly. The method
around line 260 at SimpleMatrix is:
static double determinantCholesky(double[][] l)
{
if (!isSquare(l))
throw new IllegalArgumentException("Matrix is not square");
---------do i place code here????----------------
double d = 1.;
for (int i = 0; i < nbRows(l); i++)
d *= l[i][i];
return d * d;
}
I hope you can still remember what you have done, it seems a while ago..
Thank you
Jorrit
Original comment by jorre...@gmail.com
on 18 Jul 2012 at 7:28
Original issue reported on code.google.com by
vamos.be...@gmail.com
on 9 Jun 2010 at 1:13