Given a matrix M how to form the following matrix N from M.
Given a matrix M how to form the following matrix N from M.
Suppose M=[03 20]
Here M is a 2×2 matrix with 1st row [0,3] and 2nd row [2,0].
We need to form N such that
N= [33 22]
Here N is a 2×2 matrix with 1st row [3,3] and 2nd row [2,2].
Thus N is formed from M by just adding all the off the diagonal elements of M in a given row to the diagonal element
So the diagonal element of N is the sum of all the remaining entries in a given row of M whereas the rest of the elements of N are the same as M.
So the elements of N are obtained from M in the following way :
a11=0+3=3,a12=3,a21=2,a22=2+0=2
How to code it?
Please help.