File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -92,8 +92,8 @@ def c(self,y_):
92
92
def f (self ):
93
93
"""
94
94
Fit function
95
- :param y_: init method
96
- :type y_: init method
95
+ :param y_:
96
+ :type y_:
97
97
98
98
:return:
99
99
:rtype:
@@ -172,18 +172,20 @@ def create_tuple(self):
172
172
def create_dict (self ):
173
173
"""Creates a dictionary
174
174
:return:
175
- :rtype:
175
+ :rtype: dict
176
176
"""
177
177
self .dict = {}
178
178
179
179
return self .dict
180
180
181
181
182
182
183
- def results (self ):
184
- fig = plt .figure (figsize = (14 ,14 ))
185
- a1 = fig .add_subplot (211 )
183
+ def res (self ):
184
+
185
+ f = plt .figure (figsize = (10 ,10 ))
186
+ q = f .add_subplot (211 )
186
187
187
- plt .title ('minimisation of errors across the iterations' )
188
- a1 .plot (self .h )
188
+ plt .title ("error minimisation for a number of iterations" )
189
+
190
+ q .plot (self .h )
189
191
You can’t perform that action at this time.
0 commit comments