用python:定义一个二维向量类V2,实现二维向量的加法、减法和内积运算。要求向量使用元组输入。
时间: 2024-02-15 09:03:06 浏览: 68
二维向量运算
可以使用以下代码来定义一个二维向量类V2,并实现向量的加法、减法和内积运算:
```python
class V2:
def __init__(self, x, y):
self.x = x
self.y = y
def __add__(self, other):
return V2(self.x + other.x, self.y + other.y)
def __sub__(self, other):
return V2(self.x - other.x, self.y - other.y)
def dot(self, other):
return self.x * other.x + self.y * other.y
```
使用元组输入向量可以使用以下方式:
```python
v1 = V2(1, 2)
v2 = V2(3, 4)
v3 = V2(-1, 5)
v4 = v1 + v2
print(v4.x, v4.y) # 输出 4, 6
v5 = v2 - v3
print(v5.x, v5.y) # 输出 4, -1
dot_product = v1.dot(v3)
print(dot_product) # 输出 9
```
阅读全文