Skip to content

Instantly share code, notes, and snippets.

@drmalex07
drmalex07 / gnuplot-py-example.py
Created December 24, 2014 17:06
A simple example for Gnuplot.py. #python #gnuplot
import numpy
import Gnuplot
def rainfall_intensity_t10(t):
return 11.23 * (t**(-0.713))
def rainfall_intensity_t50(t):
return 18.06 * (t**(-0.713))
g = Gnuplot.Gnuplot()