すべてのエントリが同じ値である配列を作成するにはどうすればよいですか? 私は知っnumpy.ones()
てnumpy.zeros()
いて、これを 1 と 0 に対して行っていますが、どう-1
ですか?
例えば:
>>import numpy as np
>>np.zeros((3,3))
array([[ 0., 0., 0.],
[ 0., 0., 0.],
[ 0., 0., 0.]])
>>np.ones((2,5))
array([[ 1., 1., 1., 1., 1.],
[ 1., 1., 1., 1., 1.]])
>>np.negative_ones((2,5))
???