w3resource

NumPy: Get the largest integer smaller or equal to the division of the inputs

NumPy Mathematics: Exercise-4 with Solution

Write a NumPy program to get the largest integer smaller or equal to the division of the inputs.

Sample Solution:

Python Code:

import numpy as np
x = [1., 2., 3., 4.]
print("Original array:")
print(x)
print("Largest integer smaller or equal to the division of the inputs:")
print(np.floor_divide(x, 1.5))

Sample Output:

Original array:                                                        
[1.0, 2.0, 3.0, 4.0]                                                   
Largest integer smaller or equal to the division of the inputs:        
[ 0.  1.  2.  2.]

Explanation:

In the above exercise -

x = [1., 2., 3., 4.] – This line defines a list of floats.

np.floor_divide(x, 1.5) – This line performs floor division of each element in x by 1.5.

Finally print() will print [0., 1., 2., 2.].

Python-Numpy Code Editor:

Previous: Write a NumPy program to get true division of the element-wise array inputs.
Next: Write a NumPy program to get the powers of an array values element-wise.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/numpy/python-numpy-math-exercise-4.php