Q:

Write a NumPy program to create a 5x5 array with random values and find the minimum and maximum values

0

Write a NumPy program to create a 5x5 array with random values and find the minimum and maximum values.

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((5,5))
print("Original Array:")
print(x) 
xmin, xmax = x.min(), x.max()
print("Minimum and Maximum Values:")
print(xmin, xmax)

Sample Output:

Original Array:                                                        
[[ 0.3839264   0.6527485   0.41092465  0.63987331  0.72739435]         
 [ 0.1711146   0.7542493   0.30799339  0.79689356  0.92014308]         
 [ 0.14420449  0.28689129  0.69339598  0.26608753  0.20895817]         
 [ 0.20215693  0.36993965  0.21283682  0.33183608  0.92672618]         
 [ 0.25734144  0.01083637  0.41502065  0.90604563  0.92236538]]        
Minimum and Maximum Values:                                            
0.0108363710034 0.926726177113

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