Add number to matrix in Numpy Python by R4R Team

Task-
In the given array or matrix, we have to add new number in each elements of the array.

Example-

array is [1 2 3 4]
then array+1 will give [2 3 4 5]


program-

#import numpy
import numpy as np

l=[1,2,3,4,5]
arr=np.array(l)
print("Matrix is :",arr)
print("After adding 1 :",arr+1)

l=[[1,2,3],[4,5,1],[1,1,0]]
arr=np.array(l)
print("nMatrix is :n",arr)
print("After adding 1 :n",arr+1)


output-

Matrix is : [1 2 3 4 5]
After adding 1 : [2 3 4 5 6]

Matrix is :
[[1 2 3]
[4 5 1]
[1 1 0]]
After adding 1 :
[[2 3 4]
[5 6 2]
[2 2 1]]

-In this program, we create a array from the list then add 1 to every element of the array and display them.




Leave a Comment:
Search
Categories
R4R Team
R4Rin Top Tutorials are Core Java,Hibernate ,Spring,Sturts.The content on R4R.in website is done by expert team not only with the help of books but along with the strong professional knowledge in all context like coding,designing, marketing,etc!