Skip to content

Instantly share code, notes, and snippets.

@liebke
Created December 20, 2009 23:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liebke/96a1b26706acd55ea0e2 to your computer and use it in GitHub Desktop.
Save liebke/96a1b26706acd55ea0e2 to your computer and use it in GitHub Desktop.
;; PRINT METHOD FOR COLT MATRICES
(defmethod print-method Matrix [o, #^java.io.Writer w]
(let [formatter (DoubleFormatter. "%1.4f")]
(do
(.setPrintShape formatter false)
(.write w "[")
(.write w (.toString formatter o))
(.write w "]\n"))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment