What Is Np C

[Solved] What Is Np C | Shell - Code Explorer | yomemimo.com
Question : what is np.c_

Answered by : tired-teira-txgee08yiopv

>>> np.c_[np.array([1,2,3]), np.array([4,5,6])]
array([[1, 4], [2, 5], [3, 6]])
>>> np.c_[np.array([[1,2,3]]), 0, 0, np.array([[4,5,6]])]
array([[1, 2, 3, ..., 4, 5, 6]])

Source : https://numpy.org/doc/stable/reference/generated/numpy.c_.html | Last Update : Mon, 03 May 21

Answers related to what is np c

Code Explorer Popular Question For Shell