ads2_2022/code/python/src/thirdparty/maths.py

31 lines
752 B
Python
Raw Normal View History

2022-04-07 16:41:15 +02:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# IMPORTS
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
from fractions import Fraction;
2022-04-07 16:41:15 +02:00
import math;
2022-06-02 11:42:42 +02:00
import numpy as np;
2022-06-09 01:50:36 +02:00
import pandas as pd;
2022-04-07 16:41:15 +02:00
import random;
from random import uniform;
from random import choice as uniform_random_choice;
2022-06-09 14:55:08 +02:00
from tabulate import tabulate;
2022-04-07 16:41:15 +02:00
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# EXPORTS
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
__all__ = [
'Fraction',
2022-04-07 16:41:15 +02:00
'math',
2022-06-02 11:42:42 +02:00
'np',
2022-06-09 01:50:36 +02:00
'pd',
2022-04-07 16:41:15 +02:00
'random',
'uniform',
'uniform_random_choice',
2022-06-09 14:55:08 +02:00
'tabulate',
2022-04-07 16:41:15 +02:00
];