jblas-project / jblas

Linear Algebra for Java
http://jblas.org
BSD 3-Clause "New" or "Revised" License
590 stars 149 forks source link

A bug at FloatMatrix,out(DataOutputStream dos) method #56

Closed XSoftlab closed 9 years ago

XSoftlab commented 9 years ago

At line 2648: dos.writeDouble(data[i]); It should be: dos.writeFloat(data[i]);

mikiobraun commented 9 years ago

Thanks for reporting this! Fixed in the upcoming 1.2.4 release.