core-matrix

intended for specific discussion around core.matrix (usage and development) For general data work check out #data-science
2017-10-25T03:16:19.000019Z

Hi @michael.ford you can certainly construct matrices like that, but I think the best method depends on what is the source data you are trying to populate from?

2017-10-25T03:16:48.000094Z

transpose is good if you already have the transpose of what you want

2017-10-25T03:18:08.000129Z

reshape might make sense if you have the element values in a vector

2017-10-25T03:19:14.000108Z

You can of course just construct it directly from nested clojure vectors with something like (array :my-impl [[1] [2]])

mikeyford 2017-10-25T16:32:59.000727Z

@mikera ok great...thanks very much. love your work by the way 😄