import numpy as np
import numpy.linalg as la
import matplotlib.pyplot as plt

from blatt05 import *

def gauss(n):
    xs, coeffs = [], []
    return (xs, coeffs)

if __name__ == "__main__":
    f, a, b = np.exp, -3, 3
    noKnots, noIter = np.arange(6), 2 * 2**np.arange(10)

    print("Hello, World!")
