Q:

Write a NumPy program to get true division of the element-wise array inputs

0

Write a NumPy program to get true division of the element-wise array inputs.

All Answers

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

import numpy as np
x = np.arange(10)
print("Original array:")
print(x)
print("Division of the array inputs, element-wise:")
print(np.true_divide(x, 3))

Sample Output:

Original array:                                                        
[0 1 2 3 4 5 6 7 8 9]                                                  
Division of the array inputs, element-wise:                            
[ 0.          0.33333333  0.66666667  1.          1.33333333  1.6666666
7                                                                      
  2.          2.33333333  2.66666667  3.        ]

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