码迷,mamicode.com
首页 > 其他好文 > 详细

2-10四则运算

时间:2019-10-06 15:09:34      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:let   cal   rac   env   letter   digg   rect   apply   ken   

In [2]:
import numpy as np
x=np.array([5,5])
y=np.array([2,2])
 

乘法

In [3]:
np.multiply(x,y)
Out[3]:
array([10, 10])
In [4]:
np.dot(x,y)#内积
Out[4]:
20
In [5]:
x.shape
Out[5]:
(2,)
In [6]:
y.shape
Out[6]:
(2,)
In [7]:
x.shape=2,1
x
Out[7]:
array([[5],
       [5]])
In [8]:
np.dot(x,y)#维度不一样
 
---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
<ipython-input-8-6849a5f7ad6c> in <module>()
----> 1np.dot(x,y)

ValueError: shapes (2,1) and (2,) not aligned: 1 (dim 1) != 2 (dim 0)
In [9]:
y.shape=1,2
y
Out[9]:
array([[2, 2]])
In [10]:
x
Out[10]:
array([[5],
       [5]])
In [12]:
print(x.shape)
print(y.shape)
 
(2, 1)
(1, 2)
In [14]:
np.dot(x,y)
Out[14]:
array([[10, 10],
       [10, 10]])
In [15]:
np.dot(y,x)
Out[15]:
array([[20]])
In [17]:
x=np.array([1,1,1])
y=np.array([[1,2,3],[4,5,6]])
print(x*y)#自动加维数转换
 
[[1 2 3]
 [4 5 6]]
In [18]:
x=np.array([1,1,1])
y=np.array([1,1,1])
x==y#必须维度一样,逐一进行比较
Out[18]:
array([ True,  True,  True])
In [19]:
np.logical_and(x,y)#逻辑与操作
Out[19]:
array([ True,  True,  True])
In [20]:
np.logical_or(x,y)#或
Out[20]:
array([ True,  True,  True])
In [21]:
np.logical_not(x,y)#非
Out[21]:
array([0, 0, 0])

2-10四则运算

标签:let   cal   rac   env   letter   digg   rect   apply   ken   

原文地址:https://www.cnblogs.com/AI-robort/p/11627176.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!