class documentation

class Quadratic(Curve):

Constructor: Quadratic(a, b, c)

View In Hierarchy

Class for curves of the quadratic form y = ax^2 + bx + c

Method __init__ Initialise the quadratic with values for a,b and c
Method get_ys Request y points for the given x series
Instance Variable a Undocumented
Instance Variable b Undocumented
Instance Variable c Undocumented
def __init__(self, a, b, c):

Initialise the quadratic with values for a,b and c

def get_ys(self, xs):

Request y points for the given x series

a =

Undocumented

b =

Undocumented

c =

Undocumented