-
Notifications
You must be signed in to change notification settings - Fork 0
/
sampleData.py
61 lines (57 loc) · 1.24 KB
/
sampleData.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# -*- coding: utf-8 -*-
"""
Created on Fri Jul 7 10:15:55 2017
@author: Nat
"""
import numpy as np
ts = [4.00195671563148,
4.9994417455595,
5.99861145882359,
7.00000213095339,
8.00124206950528,
9.00059539206212,
10.0002954225986,
10.9987196871613,
11.9972893334758,
12.9996523075144,
14.0014886901597,
15.0006377969684,
16.0011711200604,
17.0015908069488,
17.9984850884173,
18.9995766841545,
20.0006672056932,
20.9993229185695,
21.9999247105645,
23.0009916449331,
24.0012722177799,
25.0001438526657,
26.0001419121818,
27.0003743465603,
27.9985618968428,
28.999497179577,
29.9984477184964,
30.9991162709092,
31.9996508605453,
33.0021101924317,
34.002402875233,
34.9988997240641,
36.0024040639809,
37.0002378996562,
37.9995814478287,
38.9982511086294,
39.9993252931673,
40.9998374021483,
42.0003423608494,
43.0020628884854,
43.9994544986611,
45.0014128318847,
46.0004181757872,
47.0013258077224,
48.0021603099369,
48.9981242411287,
50.000605221515,
51.0004989238444,
51.9981763259648,
52.9997361966859]
ts2 = np.column_stack((np.array(ts), np.array(ts) * np.array(ts)))