Q:

Write a NumPy program to normalize a 3x3 random matrix

0

Write a NumPy program to normalize a 3x3 random matrix.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import numpy as np
x= np.random.random((3,3))
print("Original Array:")
print(x)
xmax, xmin = x.max(), x.min()
x = (x - xmin)/(xmax - xmin)
print("After normalization:")
print(x)

Sample Output:

Original Array:                                                        
[[ 0.89372503  0.99865458  0.77120044]                                 
 [ 0.67632984  0.99990084  0.64110391]                                 
 [ 0.34845794  0.66557903  0.29031742]]                                
After normalization:                                                   
[[ 0.85036881  0.99824367  0.67769765]                                 
 [ 0.54399864  1.          0.49435553]                                 
 [ 0.08193614  0.52884777  0.        ]]

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now