Open In App

numpy.asmatrix() in Python

Last Updated : 29 Nov, 2018
Comments
Improve
Suggest changes
Like Article
Like
Report
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
# 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 .

Practice Tags :

Similar Reads

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy