Write a NumPy program to display NumPy array elements of floating values with given precision.
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]
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output: