Skip to content
Snippets Groups Projects
analysis.py 429 B
Newer Older
"""
Analysis class
"""

class Analysis:

    def __init__(self, angles):
        self.xHigh = angles[0][0]
        self.xLow = angles[0][1]
        self.yHigh = angles[1][0]
        self.yLow = angles[1][0]
        self.xMean = 0
        self.yMean = 0
        self.xError = 0
        self.yError = 0

        #TODO: Determine mean and std

        #TODO: Plot

    def Angles(self):
        ...

    def Plot(self):
        ...