Re: [julia-users] elementwise operators

2016-04-05 Thread Stefan Karpinski
The .op operators actually generally do broadcast(op, ...) rather than map. Now that higher order programming is really efficient on 0.5, we could actually implement it that way too, which will eliminate some implementation complexity. On Tue, Apr 5, 2016 at 11:35 AM, Erik Schnetter

Re: [julia-users] elementwise operators

2016-04-05 Thread Erik Schnetter
On Tue, Apr 5, 2016 at 11:23 AM, Didier Verna wrote: > > I understand that some operators have elementwise versions, when > prefixed with a dot. I think the manual is missing some dots, like in > this paragraph, right ? > > "The operator < is intended for array

[julia-users] elementwise operators

2016-04-05 Thread Didier Verna
I understand that some operators have elementwise versions, when prefixed with a dot. I think the manual is missing some dots, like in this paragraph, right ? "The operator < is intended for array objects; the operation A .< B is valid only if A and B have the same dimensions. The operator