[julia-users] Re: How to print an array with the correct shape in 0.5

2016-10-18 Thread spaceLem
Thanks, that's what I was looking for! Regards, Jamie On Saturday, 8 October 2016 22:20:45 UTC+1, Steven G. Johnson wrote: > > > > On Friday, October 7, 2016 at 9:30:00 AM UTC-4, spaceLem wrote: >> >> In Julia 0.4.6 I could print or @show a 2d array, and it would give me a >> nicely formatted 2

[julia-users] Re: How to print an array with the correct shape in 0.5

2016-10-08 Thread Steven G. Johnson
On Friday, October 7, 2016 at 9:30:00 AM UTC-4, spaceLem wrote: > > In Julia 0.4.6 I could print or @show a 2d array, and it would give me a > nicely formatted 2d array > println(reshape(1:4,2,2)) > [1 3 > 2 4] > > However in Julia 0.5 I instead get: > println(reshape(1:4,2,2)) > [1 3; 2 4] > >