On 1/30/2009 3:07 PM, Grissiom wrote:You avoid filling with ones, all the multiplications and creating an
> Is fill function has any advantage over ones(size)*x ?
temporary array. It can be done like this:
a = empty(size)
a[:] = x
Which would be slightly faster and more memory efficient.