NumPy 重塑不做功能

NumPy reshape don't do it function

提问人:e._igm._ 提问时间:10/29/2023 最后编辑:jarede._igm._ 更新时间:10/30/2023 访问量:53

问:

我想在与一个充满 1 个相同大小的数组连接后重塑一个 NumPy 数组,但它想要重塑。

我试过了什么

#variable with to manipulate number of samples
n_sample = 2
#create an array with values using linspace
x = np.linspace(0, 10, n_sample)

#creat an array full of 1 same length as array x
x_ones=np.ones(len(x))
#Concatenate the new array with x and put result in new array X
np.set_printoptions(suppress=True)
X=np.hstack((x,x_ones))
#Try to reshape X to (len(x),2)
np.reshape(X,(len(x),2))
X

我得到了我想要的array([ 0., 10., 1., 1.])array([ [0.,1.] [10., 1.])

python 数组 numpy 重塑

评论


答: 暂无答案