[julia-users] Re: Juno+Julia installation

2015-02-07 Thread julia . elison . 2
Take this with a grain of salt, but I have had someone else tell me that Julia failed to install packages on OS X because of git permission errors.

[julia-users] Re: Allocate a Vector

2015-02-04 Thread julia . elison . 2
This doesn't directly address your issue (which seems valid and simple to me) but you can use fill(0, 5) or fill( int64(0), 5) to create a vector with initialized values. On Wednesday, February 4, 2015 at 4:00:51 AM UTC-6, Kristoffer Carlsson wrote: If you want to allocate an Array you

[julia-users] select! with range creating a memory allocation

2015-02-01 Thread julia . elison . 2
I realize this is a more developer issue, but I'm wondering if anyone else thinks it would be a good idea for select! to be changed to not return A[r] (which allocates memory). I think it could return (A[r.start], A[r.stop]), sub(A, r) or even nothing. As it stands it seems like a

[julia-users] Re: select! with range creating a memory allocation

2015-02-01 Thread julia . elison . 2
Thanks for the reply. To start using 0.4 will I just have to gamble on a nightly windows installer? On Sunday, February 1, 2015 at 1:11:40 PM UTC-6, Ivar Nesje wrote: This issue will fix itself when `a[r]` returns a subarray with 0.4 (this hasn't landed in master yet, and reminds me that