Skip to content

Instantly share code, notes, and snippets.

View EmanuelFontelles's full-sized avatar

Emanuel Fontelles EmanuelFontelles

View GitHub Profile

title

subtitles

We are testing $$\sigma = 2$$

Testando o markdown para o medium $\sigma = 2$

\begin{equation} a = b \end{equation}

@EmanuelFontelles
EmanuelFontelles / README
Created October 13, 2016 18:34 — forked from onyb/README
Code samples of "Simulated Annealing for Ising spin glass model" project
Steps
-----
1. Clone this Github Gist by:
git clone https://gist.github.com/9e6cec4bb0f8ee826fcd.git
2. Launch the Simulated Annealer for comparing the success probabilities by using
the following command:
bash launch.sh -p
or
@EmanuelFontelles
EmanuelFontelles / percolation.py
Last active September 14, 2015 22:17 — forked from cameronneylon/percolation.py
Code for percolation network simulation used in my talk at #BOSC July 19 2013 in Berlin. Based on code from http://dragly.org/2013/03/25/working-with-percolation-clusters-in-python/. The license for the source code is not entirely clear so this code is made available under a CC BY-SA license as per the blog it was derived from. For reasons not e…
from pylab import *
from scipy.ndimage import measurements
import numpy as np
import matplotlib.pyplot as plt
import time
import sys
import signal
def signal_handler(signal, frame):
sys.exit(0)