Sha256: 8ea6579dd6109efa3e88e83fa989972be7df8efb5ed6c1d9a108b2643978eaea
Contents?: true
Size: 282 Bytes
Versions: 22
Compression:
Stored size: 282 Bytes
Contents
#!/usr/bin/env ruby require("gsl") x = GSL::Vector.linspace(-5, 5, 100) y1 = GSL::Ran::exppow_pdf(x, 1, 2.5) y2 = GSL::Ran::exppow_pdf(x, 1, 0.5) GSL::Vector.graph(x, y1, y2, "-T X -g 3 -C -X x -Y 'p(x)' -x -5 5 -L 'Exppow distribution, a = 1, b = 2.5, 0' --toggle-rotate-y-label")
Version data entries
22 entries across 22 versions & 4 rubygems