core-matrix

intended for specific discussion around core.matrix (usage and development) For general data work check out #data-science
2015-10-26T11:29:19.000031Z

(assign! m 1.0) should work

2015-10-26T11:30:33.000032Z

Otherwise you can also do (broadcast 1.0 target-shape) I think, that probably means you need to set the right implementation first

2015-10-26T11:32:50.000033Z

The broadcast method may be better if you have a big array and don't plan to mutate it, since that means it only needs to store a single double value

2015-10-26T21:06:40.000034Z

Thanks, I will give those a go.