[Python系列-12]:人工智能 - 数学基础 -2- 数组元素的算术运算
Posted 文火冰糖的硅基工坊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Python系列-12]:人工智能 - 数学基础 -2- 数组元素的算术运算相关的知识,希望对你有一定的参考价值。
作者主页(文火冰糖的硅基工坊):https://blog.csdn.net/HiWangWenBing
本文网址:https://blog.csdn.net/HiWangWenBing/article/details/119298635
目录
第8章 取余运算:numpy.mod() & numpy.remainder()
第1章 概述
NumPy 算术函数包含简单的加减乘除运算: add(),subtract(),multiply() 和 divide()。
算术运算后得到的结果依然是是相同维度的数组。
https://www.runoob.com/numpy/numpy-linear-algebra.html
第2章 加法运算:add
#代码实例
import numpy as np
a = np.arange(9, dtype = np.float_).reshape(3,3)
print ('第一个数组:')
print (a)
print ('\\n')
print ('第二个数组:')
b = np.array([10,10,10])
print (b)
print ('\\n')
print ('两个数组相加:')
print (np.add(a,b))
print ('\\n')
输出结果为:
第一个数组:
[[0. 1. 2.]
[3. 4. 5.]
[6. 7. 8.]]
第二个数组:
[10 10 10]
两个数组相加:
[[10. 11. 12.]
[13. 14. 15.]
[16. 17. 18.]]
第3章 减法运算:subtract
#代码实例
print ('两个数组相减:')
print (np.subtract(a,b))
print ('\\n')
#输出结果
两个数组相减:
[[-10. -9. -8.]
[ -7. -6. -5.]
[ -4. -3. -2.]]
第4章 乘法运算:multiply
#代码实例
print ('两个数组相乘:')
print (np.multiply(a,b))
print ('\\n')
#输出结果
两个数组相乘:
[[ 0. 10. 20.]
[30. 40. 50.]
[60. 70. 80.]]
第5章除法运算:divide
#代码实例
print ('两个数组相除:')
print (np.divide(a,b))
print ('\\n')
#输出结果
两个数组相除:
[[0. 0.1 0.2]
[0.3 0.4 0.5]
[0.6 0.7 0.8]]
第6章 倒数运算:numpy.reciprocal()
numpy.reciprocal() 函数返回参数逐元素的倒数。如 1/4 倒数为 4/1。
#实例
import numpy as np
a = np.array([0.25, 1.33, 1, 100])
print ('我们的数组是:')
print (a)
print ('\\n')
print ('调用 reciprocal 函数:')
print (np.reciprocal(a))
#输出结果为:
我们的数组是:
[ 0.25 1.33 1. 100. ]
调用 reciprocal 函数:
[4. 0.7518797 1. 0.01 ]
第7章 幂运算:numpy.power()
numpy.power() 函数将第一个输入数组中的元素作为底数,计算它与第二个输入数组中相应元素的幂。
#实例
import numpy as np
a = np.array([10,100,1000])
print ('我们的数组是;')
print (a)
print ('\\n')
print ('调用 power 函数:')
print (np.power(a,2))
print ('\\n')
print ('第二个数组:')
b = np.array([1,2,3])
print (b)
print ('\\n')
print ('再次调用 power 函数:')
print (np.power(a,b))
#输出结果为:
我们的数组是;
[ 10 100 1000]
调用 power 函数:
[ 100 10000 1000000]
第二个数组:
[1 2 3]
再次调用 power 函数:
[ 10 10000 1000000000]
第8章 取余运算:numpy.mod() & numpy.remainder()
numpy.mod() 计算输入数组中相应元素的相除后的余数。
函数 numpy.remainder() 也产生相同的结果。
实例
import numpy as np
a = np.array([10,20,30])
b = np.array([3,5,7])
print ('第一个数组:')
print (a)
print ('\\n')
print ('第二个数组:')
print (b)
print ('\\n')
print ('调用 mod() 函数:')
print (np.mod(a,b))
print ('\\n')
print ('调用 remainder() 函数:')
print (np.remainder(a,b))
输出结果为:
第一个数组:
[10 20 30]
第二个数组:
[3 5 7]
调用 mod() 函数:
[1 0 2]
调用 remainder() 函数:
[1 0 2]
作者主页(文火冰糖的硅基工坊):https://blog.csdn.net/HiWangWenBing
本文网址:https://blog.csdn.net/HiWangWenBing/article/details/119298635
以上是关于[Python系列-12]:人工智能 - 数学基础 -2- 数组元素的算术运算的主要内容,如果未能解决你的问题,请参考以下文章
[Python系列-16]:人工智能 - 数学基础 -6- 常见数学函数激活函数大全
[Python系列-13]:人工智能 - 数学基础 -3- 数组元素的统计
[Python系列-11]:人工智能 - 数学基础 -1- 数组元素的函数运算