Skip to content

Instantly share code, notes, and snippets.

View mmngreco's full-sized avatar
:octocat:
Viming...

mg20400 mmngreco

:octocat:
Viming...
View GitHub Profile
@mmngreco
mmngreco / simulacion_montecarlo_pi
Last active August 20, 2019 10:02
simulacion_montecarlo_pi
#!/usr/bin/env python
#-*- coding:utf-8 -*-
from __future__ import division
import numpy as np
from pylab import *
pi_hat = []
nn = 1000 # numero de veces que repetimos la simulación
@mmngreco
mmngreco / montercarlo_sim_pi.py
Last active August 20, 2019 10:01
estimación de pi simulación de montecarlo.
#!/usr/bin/env python
#-*- coding:utf-8 -*-
from __future__ import division
import numpy as np
from pylab import *
import matplotlib.pyplot as plt
import seaborn as sns
import prettyplotlib as ppl
@mmngreco
mmngreco / sim_pi.py
Last active August 29, 2015 14:17
Simulación por el método de montecarlo, un aproximación al número Pi.
#!/usr/bin/env python
#-*- coding:utf-8 -*-
from __future__ import division
from numba import jit
from random import uniform
from math import *
@jit(nopython=True)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mmngreco
mmngreco / libros_vendidos.ipynb
Last active December 21, 2015 18:45
NÚMERO DE LIBROS VENDIDOS EN ESPAÑA
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mmngreco
mmngreco / hotelling.ipynb
Last active March 11, 2016 21:29
EJEMPLO DE HOTELLING CON CUATRO JUGADORES.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.