mirror of
https://gitlab.science.ru.nl/mthesis-edeboone/m.internship-documentation.git
synced 2024-11-12 18:43:30 +01:00
13 lines
292 B
Python
13 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'
|