I have a symmetric matrix a
for which the diagonal elements can be different.
>>> import numpy as np
>>> a = np.array([[3, 7, 6], [7, 2, 5], [6, 5, 1]])
>>> a
array([[3, 7, 6],
[7, 2, 5],
[6, 5, 1]])
I would like to normalize this matrix to make all the diagonal elements 0 like this:
array([[0, x1, x2],
[x1, 0, x3],
[x2, x3, 0]])
How can I do it (in Python if possible)? Any help will be very appreciated, thank you.
If you want to make all the diagonal elements 0, just use a simple for-loop.