numpy.asmatrix(data, dtype = None) Devuelve una array al interpretar la entrada como una array.
Parámetros:
data : array-like input data dtype : Data type of returned array
Devoluciones :
Interprets the input as a matrix
# Python Programming illustrating # numpy.asmatrix import numpy as geek # array-like input b = geek.matrix([[5, 6, 7], [4, 6]]) print("Via array-like input : \n", b, "\n") c = geek.asmatrix(b) b[0, 1] = 10 print("c matrix : \n", c)
Producción :
Via array-like input : [[[5, 6, 7] [4, 6]]] c matrix : [[[5, 6, 7] 10]]
Note : These NumPy-Python programs won’t run on onlineID, so run them on your systems to explore them
.
This article is contributed by Mohit Gupta_OMG 😀. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Escriba comentarios si encuentra algo incorrecto o si desea compartir más información sobre el tema tratado anteriormente.
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA