Q:

Write a NumPy program to display NumPy array elements of floating values with given precision

0

Write a NumPy program to display NumPy array elements of floating values with given precision.

All Answers

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

import numpy as np
x=np.array([ 0.26153123, 0.52760141, 0.5718299, 0.5927067, 0.7831874, 0.69746349,             
  0.35399976, 0.99469633, 0.0694458, 0.54711478]) 
print("Original array elements:")
print(x)
print("Print array values with precision 3:")
np.set_printoptions(precision=3)
print(x)
Sample Output:
Original array elements:                                               
[ 0.26153123  0.52760141  0.5718299   0.5927067   0.7831874   0.6974634
9                                                                      
  0.35399976  0.99469633  0.0694458   0.54711478]                      
Print array values with precision 3:                                   
[ 0.262  0.528  0.572  0.593  0.783  0.697  0.354  0.995  0.069  0.547]

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