原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.atleast_2d.html
校对:(虚位以待)
numpy.
atleast_2d
(*arys)[source]将输入视为具有至少两个维度的数组。
参数: | arys1,arys2,...:array_like
|
---|---|
返回: | res,res2,...:ndarray
|
也可以看看
例子
>>> np.atleast_2d(3.0)
array([[ 3.]])
>>> x = np.arange(3.0)
>>> np.atleast_2d(x)
array([[ 0., 1., 2.]])
>>> np.atleast_2d(x).base is x
True
>>> np.atleast_2d(1, [1, 2], [[1, 2]])
[array([[1]]), array([[1, 2]]), array([[1, 2]])]