This file contains 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
<?php | |
$text = $argv[1]; | |
$postdata = http_build_query([ | |
'q' => $text, | |
]); | |
$opts = [ | |
'http' => [ | |
'method' => 'POST', | |
'header' => 'Content-type: application/x-www-form-urlencoded', |
This file contains 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
"""Module to plot Gravitational Wave Templates | |
Can be used to test if a waveform approximant works or not. | |
""" | |
from __future__ import division, print_function | |
import bilby | |
import matplotlib.pyplot as plt |