tra-analysis/data analysis/superscript.py

27 lines
518 B
Python
Raw Normal View History

2020-02-18 17:31:20 +00:00
# Titan Robotics Team 2022: Superscript Script
# Written by Arthur Lu & Jacob Levine
# Notes:
# setup:
__version__ = "0.0.0.001"
# changelog should be viewed using print(analysis.__changelog__)
__changelog__ = """changelog:
0.0.0.001:
- created script
- added analysis, numba, numpy imports
"""
__author__ = (
"Arthur Lu <learthurgo@gmail.com>",
"Jacob Levine <jlevine@imsa.edu>",
)
__all__ = [
]
# imports:
from analysis import analysis as an
from numba import jit
import numpy as np