Q:

Write a NumPy program to compute numerical negative value for all elements in a given array

0

Write a NumPy program to compute numerical negative value for all elements in a given array

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, 1, -1])
print("Original array: ")
print(x)
r1 = np.negative(x)
r2 = -x
assert np.array_equal(r1, r2)
print("Numerical negative value for all elements of the said array:")
print(r1)

Sample Output:

Original array: 
[ 0  1 -1]
Numerical negative value for all elements of the said array:
[ 0 -1  1]

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