numpy.asmatrix (data, dtype = None) Returns a matrix, interpreting the input as a matrix.
Parameters :
data: array-like input data dtype: Data type of returned array
Returns :
Interprets the input as a matrix
|
Output:
Via array-like input: [[[5, 6, 7] [4, 6]]] c matrix: [[[5, 6, 7] 10]]
Note: stron g> these NumPy-Python programs won’t work by onlineID, so run them on your systems to learn them
,
This article is provided by Mohit Gupta_OMG