[julia-users] Re: Julia T-shirt and Sticker

2015-02-25 Thread Aero_flux
How about organising something to help fund JuliaCon 2015 if funding is needed. www.spread*shirt*.com/ maybe? I would be up for buying one. Would it be alright to reproduce one for myself? On Monday, June 9, 2014 at 10:55:06 PM UTC+1, Rich Morin wrote: > > I've been looking around for a Julia sh

[julia-users] Re: splice! function. Instead of removing a single item, remove a collection of items stored in an array.

2015-02-23 Thread Aero_flux
6 > 2 > > julia> for i=length(errs):-1:1 > splice!(x2,errs[i]) >end > > julia> x2 > 3-element Array{Int64,1}: > 7 > 6 > 2 > > > > > On Monday, February 23, 2015 at 8:07:43 AM UTC-5, Aero_flux wrote: >> >> Thanks f

[julia-users] Re: splice! function. Instead of removing a single item, remove a collection of items stored in an array.

2015-02-23 Thread Aero_flux
> 7 > 6 > 2 > > julia> for i=length(errs):-1:1 > splice!(x2,errs[i]) >end > > julia> x2 > 3-element Array{Int64,1}: > 7 > 6 > 2 > > > > > On Monday, February 23, 2015 at 8:07:43 AM UTC-5, Aero_flux wrote: >> >>

[julia-users] Re: splice! function. Instead of removing a single item, remove a collection of items stored in an array.

2015-02-23 Thread Aero_flux
of x. > > On Sunday, February 22, 2015 at 3:14:11 PM UTC-5, Aero_flux wrote: >> >> Hello everybody, >> >> I might be going about this the wrong way. I have a sequence of data in a >> 1-D array "x". Now I have done some calculations and have a 1-D array of

[julia-users] splice! function. Instead of removing a single item, remove a collection of items stored in an array.

2015-02-22 Thread Aero_flux
Hello everybody, I might be going about this the wrong way. I have a sequence of data in a 1-D array "x". Now I have done some calculations and have a 1-D array of the indexed points in "x" that erroneous. What I would like to to is remove all the data points in "x" that uses the saved indices.