| [ Web Proxy ] |
| Viewing: https://numpy.org/doc/stable/reference/generated/../generated/../generated/numpy.asmatrix.html | [Back] [Original] |
Interpret the input as a matrix.
Unlike matrix, asmatrix does not make a copy if the input is already
a matrix or an ndarray. Equivalent to matrix(data, copy=False).
Input data.
Data-type of the output matrix.
data interpreted as a matrix.
Examples
>>> import numpy as np
>>> x = np.array([[1, 2], [3, 4]])
>>> m = np.asmatrix(x)
>>> x[0,0] = 5
>>> m
matrix([[5, 2],
[3, 4]])
| Web Proxy Viewer | New URL | Original Page |