-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvector.py
45 lines (33 loc) · 818 Bytes
/
vector.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from __future__ import division
import math
import numpy as np
def squared_error(x, y):
err = np.subtract(x, y)
squared_err = np.dot(err, err)
return squared_err
def unit_vector(x):
return x / vlength(x)
def real_part(x):
return np.array([v.real for v in x])
def normalize(x):
while not np.isclose(x.sum(), 1.):
x /= x.sum()
return x
def vlength(x):
length = math.sqrt(np.dot(x, x))
return length
def cosine(x, y):
xlen = vlength(x)
ylen = vlength(y)
return np.dot(x, y) / (xlen * ylen)
def kronecker_delta(x):
y = []
for v in x:
y.append(x == v)
return np.array(y)
def row_vector(M, index):
x = M[index, :]
return x
def column_vector(M, index):
x = M[:, index]
return x