Rather than complain, please help clarify the manual.

Like Andreas said, I doubt much about those operations has changed between 0.3 
and 0.4. But if you don't want to be surprised by changes in behavior, you 
might want to stick with 0.3; more disruptive changes are in the works.

--Tim

On Wednesday, September 24, 2014 04:02:50 PM Hans W Borchers wrote:
> Yes, I know. But the manual says:
> 
> "Some operators without dots operate elementwise anyway when one argument
> is a scalar.
> These operators are *, /, \, and the bitwise operators."
> 
> On Thursday, September 25, 2014 12:55:16 AM UTC+2, Leah Hanson wrote:
> > No comment on the rest, but the element-wise division operator is `./`,
> > which does work:
> > 
> > ~~~
> > julia> x1 = [1.0, 1, 1];
> > 
> > julia> 1.0 ./ x1
> > 
> > 3-element Array{Float64,1}:
> >  1.0
> >  1.0
> >  1.0
> > 
> > ~~~
> > 
> > -- Leah

Reply via email to