FelipeRosa / clojure-gsgp

Geometric Semantic Genetic Programming library written in Clojure
MIT License
1 stars 0 forks source link

Implemented simple txt exporter #21

Closed FelipeRosa closed 8 years ago

FelipeRosa commented 8 years ago

Implemented txt exporter which exports a dataset matrix to a whitespace separated file.

Ex:

(save-txt filename [[0 1] [2 3]])

outputs a file

0 1
2 3