在 NumPy 中计算绝对值

Muhammad Maisam Abbas 2023年1月30日
  1. 使用 Python 中的 abs() 函数计算绝对值
  2. 使用 numpy.absolute() 函数计算绝对值
  3. 使用 numpy.abs() 函数计算绝对值
在 NumPy 中计算绝对值

本教程将介绍 Python 中计算绝对值的方法。

使用 Python 中的 abs() 函数计算绝对值

一个数的绝对值是通过取其平方的平方根来计算的。abs() function 是一个内置函数,可用于在 Python 中查找数字的绝对值。以下代码示例向我们展示了如何使用 abs() 函数在 Python 中查找绝对值。

import numpy as np

x1 = np.array([-1, -2])

print(abs(x1))

输出:

[1, 2]

在上面的代码中,我们使用 Python 中的 abs() 函数计算了变量 x1 的绝对值。

使用 numpy.absolute() 函数计算绝对值

我们还可以使用 NumPy 包中的 numpy.absolute() 函数 来计算绝对值。请参考以下代码示例。

import numpy as np

x1 = np.array([-1, -2])

print(np.absolute(x1))

输出:

[1, 2]

使用 numpy.abs() 函数计算绝对值

NumPy 包中还有一个 abs() 函数,就像 core-python 中的 abs() 函数一样,可用于计算绝对值。以下代码示例向我们展示了如何使用 Python 中的 numpy.abs() 函数计算 numpy 数组的绝对值。

import numpy as np

x1 = np.array([-1, -2])

print(np.abs(x1))

输出:

[1, 2]

上面讨论的所有函数都是完全一样的,做同样的事情。上面讨论的任何方法都没有区别。我们可以使用上述任何一种方法在 Python 中找到一个数字的绝对值。

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn