View threechannel_gaussianprocess.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import numpy | |
from numpy.random import normal as rnormal | |
from matplotlib.pyplot import figure, plot, show | |
import matplotlib.pyplot as pyplot | |
# Define the kernel functions | |
def se_kernel_pt(xp, xq, la, lb): |