mirror of
https://github.com/vale981/master-thesis
synced 2025-03-06 10:31:37 -05:00
663 B
663 B
%load_ext autoreload
%autoreload 2
import numpy as np
import stoch as s
import matplotlib.pyplot as plt
The autoreload extension is already loaded. To reload it, use: %reload_ext autoreload
t = np.linspace(0, 10, 100, dtype=float)
proc = s.svd(s.Kernels.squares(), t)
plt.plot(t, proc)
<matplotlib.lines.Line2D | at | 0x7fe13323bbe0> |