This file contains hidden or 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
### | |
# author: William Gurecky | |
# license: MIT | |
# notes: Implementation of MCMC algos for educational purposes. | |
### | |
from __future__ import print_function, division | |
from six import iteritems | |
import numpy as np | |
import scipy.stats as stats | |
import mc_plot |
This file contains hidden or 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 | |
#!/usr/bin/env python | |
#-*- coding: utf-8 -*- | |
#============================================================================== | |
# Copyright (c) 2018, William Gurecky | |
# All rights reserved. | |
# | |
# DESCRIPTION: | |
# Inspired from stack overflow question: | |
# https://stackoverflow.com/questions/52227599/interpolate-griddata-uses-only-one-core |