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
I don't know if this is just my setup, or an actual bug in the printing of these vectors. It is a visual/printing issue only I think.
Experienced issue:
(ns sauce (:require [uncomplicate.neanderthal [core :refer [scal]] [native :refer [dv]]])) (println (scal 2000 (dv -1 2 5.2 0)))
outputs
#RealBlockVector[double, n:4, offset: 0, stride:1] [-2.00E+34.00E+3 1.04E+4 .00 ] nil
Whats wrong:
expected output
#RealBlockVector[double, n:4, offset: 0, stride:1] [-2.00E+3 4.00E+3 1.04E+4 0.00] nil
My system:
editor:
Now It could probably be solved with a print-method, but I'm a beginner and don't know how to do that yet.
print-method
The text was updated successfully, but these errors were encountered:
To change how things print you should take a look in here: https://github.com/uncomplicate/neanderthal/blob/5c76fb83eb43b7aa3307e6e90d5025e41750a00f/src/clojure/uncomplicate/neanderthal/internal/printing.clj
I've definitely done this before.. if I find my code I'll update this comment later
Sorry, something went wrong.
No branches or pull requests
I don't know if this is just my setup, or an actual bug in the printing of these vectors.
It is a visual/printing issue only I think.
Experienced issue:
outputs
Whats wrong:
expected output
My system:
editor:
Now It could probably be solved with a
print-method
, but I'm a beginner and don't know how to do that yet.The text was updated successfully, but these errors were encountered: