class documentation

class Exponential(Curve):

Constructor: Exponential(a, b, c)

View In Hierarchy

Class for curves of the exponential form y = ae^bx + c

Method __init__ Initialise the exponential with values for a,b,c for y = ae^bx + c
Method get_ys Undocumented
Instance Variable a Undocumented
Instance Variable b Undocumented
Instance Variable c Undocumented
def __init__(self, a, b, c):

Initialise the exponential with values for a,b,c for y = ae^bx + c

def get_ys(self, xs):

Undocumented

a =

Undocumented

b =

Undocumented

c =

Undocumented