Wednesday, July 3, 2024
HomeLanguagesPythonnumpy.asmatrix() in Python

numpy.asmatrix() in Python

numpy.asmatrix(data, dtype = None) Returns a matrix by 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




# 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)


Output :

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 Lazyroar and would like to contribute, you can also write an article using contribute.neveropen.co.za or mail your article to contribute@neveropen.co.za. See your article appearing on the Lazyroar main page and help other Geeks.

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

Calisto Chipfumbu
Calisto Chipfumbuhttp://cchipfumbu@gmail.com
I have 5 years' worth of experience in the IT industry, primarily focused on Linux and Database administration. In those years, apart from learning significant technical knowledge, I also became comfortable working in a professional team and adapting to my environment, as I switched through 3 roles in that time.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments