Skip to content

Instantly share code, notes, and snippets.

View chetbox's full-sized avatar
🤖
Making da codez

Chetan Padia chetbox

🤖
Making da codez
View GitHub Profile
@chetbox
chetbox / gist:5489982
Created April 30, 2013 16:43
Encode Clojure vector of floats as byte array
(defn float-vec->byte-array
[v]
(.array (reduce #(.putFloat %1 %2)
(java.nio.ByteBuffer/allocate (* (count v) (/ Float/SIZE 8)))
v)))