Skip to content
Snippets Groups Projects
Commit 8b008009 authored by lorenzennio's avatar lorenzennio
Browse files

Initiation of analysis class

parent c69f2f80
No related branches found
No related tags found
1 merge request!2Analysis
"""
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):
...
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment