29 Jun
2013
29 Jun
'13
2:55 p.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