mirror of
https://gitlab.science.ru.nl/mthesis-edeboone/m.internship-documentation.git
synced 2024-11-10 01:33:30 +01:00
12 lines
292 B
Python
12 lines
292 B
Python
"""
|
|
Various functions usable by multiple scripts
|
|
"""
|
|
from matplotlib import rcParams
|
|
import matplotlib.pyplot as plt
|
|
import os.path as path
|
|
import numpy as np
|
|
|
|
rcParams["text.usetex"] = True
|
|
rcParams["font.family"] = "serif"
|
|
rcParams["font.size"] = "12"
|
|
rcParams["grid.linestyle"] = 'dotted'
|