|
@@ -35,14 +35,13 @@ version = pkg_resources.require("Akvo")[0].version
|
35
|
35
|
import yaml
|
36
|
36
|
|
37
|
37
|
class MatrixXr(yaml.YAMLObject):
|
38
|
|
- yaml_tag = u'!MatrixXr'
|
39
|
|
- def __init__(self, name, hp, ac, attacks):
|
40
|
|
- self.name = name
|
41
|
|
- self.hp = hp
|
42
|
|
- self.ac = ac
|
43
|
|
- self.attacks = attacks
|
44
|
|
- def __repr__(self):
|
45
|
|
- return "%s(name=%r, hp=%r, ac=%r, attacks=%r)" % (self.__class__.__name__, self.name, self.hp, self.ac, self.attacks)
|
|
38
|
+ yaml_tag = u'MatrixXr'
|
|
39
|
+ def __init__(self, rows, cols, data):
|
|
40
|
+ self.rows = rows
|
|
41
|
+ self.cols = cols
|
|
42
|
+ self.data = np.zeros((rows,cols))
|
|
43
|
+ def __repr__(self):
|
|
44
|
+ return "%s(rows=%r, cols=%r, data=%r)" % (self.__class__.__name__, self.rows, self.cols, self.data)
|
46
|
45
|
|
47
|
46
|
class VectorXr(yaml.YAMLObject):
|
48
|
47
|
yaml_tag = r'VectorXr'
|
|
@@ -70,7 +69,7 @@ class AkvoYamlNode(yaml.YAMLObject):
|
70
|
69
|
self.Import = {}
|
71
|
70
|
self.Processing = OrderedDict()
|
72
|
71
|
|
73
|
|
-
|
|
72
|
+
|
74
|
73
|
|
75
|
74
|
def __repr__(self):
|
76
|
75
|
return "%s(name=%r, Akvo_VESION=%r, Import=%r, Processing=%r)" % (
|
|
@@ -453,7 +452,6 @@ class ApplicationWindow(QtWidgets.QMainWindow):
|
453
|
452
|
|
454
|
453
|
INFO["nPulseMoments"] = self.RAWDataProc.nPulseMoments
|
455
|
454
|
|
456
|
|
- INFO["transFreq"] = self.RAWDataProc.transFreq.tolist()
|
457
|
455
|
INFO["processed"] = "Akvo v. 1.0, on " + time.strftime("%d/%m/%Y")
|
458
|
456
|
|
459
|
457
|
ip = 0
|
|
@@ -503,10 +501,10 @@ class ApplicationWindow(QtWidgets.QMainWindow):
|
503
|
501
|
|
504
|
502
|
def SavePreprocess(self):
|
505
|
503
|
|
506
|
|
- if "Saved" not in self.YamlNode.Processing.keys():
|
507
|
|
- self.YamlNode.Processing["Saved"] = []
|
508
|
|
- self.YamlNode.Processing["Saved"].append(datetime.datetime.now().isoformat())
|
509
|
|
- self.Log()
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
|
510
|
508
|
|
511
|
509
|
import pickle, os
|
512
|
510
|
try:
|
|
@@ -608,10 +606,11 @@ class ApplicationWindow(QtWidgets.QMainWindow):
|
608
|
606
|
|
609
|
607
|
|
610
|
608
|
|
611
|
|
- if "Loaded" not in self.YamlNode.Processing.keys():
|
612
|
|
- self.YamlNode.Processing["Loaded"] = []
|
613
|
|
- self.YamlNode.Processing["Loaded"].append(datetime.datetime.now().isoformat())
|
614
|
|
- self.Log()
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
|
615
|
614
|
|
616
|
615
|
|
617
|
616
|
self.ui.lcdNumberTauPulse1.setEnabled(True)
|