AnantLabs / efficient-java-matrix-library

Automatically exported from code.google.com/p/efficient-java-matrix-library
0 stars 0 forks source link

Matrix inversion should fail if matrix contains NaN #39

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
If a matrix has elements with NaN in it it will produce garbage results but not 
detect the failure.  

Design note: Shouldn't waste cycles checking for NaN explicity, but would be 
nice if this could be easily detected.

Original issue reported on code.google.com by peter.ab...@gmail.com on 10 Nov 2013 at 10:38

GoogleCodeExporter commented 9 years ago
Investigated this.  None of the current inverse algorithms have this capability 
and it will be a pain to implement.  Just check see if the matrix has NaN 
manually.

Original comment by peter.ab...@gmail.com on 17 Nov 2014 at 10:25