[julia-users] Re: StaticArrays vs FixedSizeArrays

2016-10-07 Thread Christoph Ortner
I've used FixedSizeArrays in the past but switch to StaticArrays, they seem more convenient in a few of ways, but for 90% of use cases they seem to be comparable. To protect myself against a possible move to yet another package, I added a layer of `typealias`.

[julia-users] Re: StaticArrays vs FixedSizeArrays

2016-10-07 Thread Simon Danisch
You might enjoy: GeometryTypes.jl Especially the Face type should be convenient: https://github.com/JuliaGeometry/GeometryTypes.jl/blob/master/src/faces.jl Its currently based on FixedSizeArrays, but I want to port it to StaticArrays

[julia-users] Re: StaticArrays vs FixedSizeArrays

2016-10-07 Thread Kristoffer Carlsson
See https://github.com/SimonDanisch/FixedSizeArrays.jl/issues/159 On Friday, October 7, 2016 at 8:10:56 AM UTC+2, Petr Hlavenka wrote: > > Hi, > With Julia 0.5 I'm little bit confused what is the best approach for high > speed array access. I'm writing a simulation where particles move in the >