In this python numpy progra, we will add a row of a matrix into another row using NumPy.
Steps to solve the program
- Import the numpy library as np.
- Create a matrix using np.array().
- Add row of the matrix to another row of the same matrix using Indexing and logic.
- Print the output.
import numpy as np
x = np.array([[6, 5],
[10, 9],
[8, 7]])
print("Original matrix: ",x)
x[0,:] = x[0,:]+x[1,:]
print("After addition: ",x)
Output :
Original matrix: [[ 6 5]
[10 9]
[ 8 7]]
After addition: [[16 14]
[10 9]
[ 8 7]]