Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
mtpalovic authored Mar 19, 2022
1 parent 2d91272 commit dddfd7d
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions pr1.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ def c(self,y_):
def f(self):
"""
Fit function
:param y_: init method
:type y_: init method
:param y_:
:type y_:
:return:
:rtype:
Expand Down Expand Up @@ -172,18 +172,20 @@ def create_tuple(self):
def create_dict(self):
"""Creates a dictionary
:return:
:rtype:
:rtype: dict
"""
self.dict = {}

return self.dict



def results(self):
fig=plt.figure(figsize=(14,14))
a1=fig.add_subplot(211)
def res(self):

f=plt.figure(figsize=(10,10))
q=f.add_subplot(211)

plt.title('minimisation of errors across the iterations')
a1.plot(self.h)
plt.title("error minimisation for a number of iterations")

q.plot(self.h)

0 comments on commit dddfd7d

Please sign in to comment.