We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As part of investigation for incanter's bug #149 I've found that comparison of 2 empty matrices causes NPE in the jBlas:
user> (= (matrix []) (matrix [])) NullPointerException org.jblas.JavaBlas.rcopy (JavaBlas.java:80)
Following change in Matrix deftype in clatrix fixes comparison of matrices, but it still fails for comparison of empty vector and empty matrix, etc.
Matrix
(matrix? that) (if (and (= (count this) 0) (= (count that) 0)) true (.equals (.me this) (.me that)))
I'm not sure - this is jBlas's issue or clatrix's
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As part of investigation for incanter's bug #149 I've found that comparison of 2 empty matrices causes NPE in the jBlas:
Following change in
Matrix
deftype in clatrix fixes comparison of matrices, but it still fails for comparison of empty vector and empty matrix, etc.I'm not sure - this is jBlas's issue or clatrix's
The text was updated successfully, but these errors were encountered: