
30 Jun
2013
30 Jun
'13
12:55 a.m.
On 6/29/2013 3:00 PM, Nathaniel wrote:
any objections to np.full?
Still curious: why isn't ``tile`` the right name? (It already exists.)
import numpy as np np.tile(3.0, (2,3))
array([[ 3., 3., 3.], [ 3., 3., 3.]])
If someone explained this, sorry to have missed it.
Alan