Skip to content
Snippets Groups Projects
Commit 0f2aa828 authored by Jameson Graef Rollins's avatar Jameson Graef Rollins
Browse files

Remove matlab interface from command line.

The gwinc_matlab function itself is not being touched, but the gwinc function
is being relegated to legacy with the upcoming nb.Budget interface.
parent 129380a9
No related branches found
No related tags found
No related merge requests found
......@@ -11,8 +11,7 @@ logging.basicConfig(format='%(message)s',
from .ifo import available_ifos, load_ifo
from .precomp import precompIFO
from .gwinc import gwinc as pygwinc
from . import gwinc_matlab
from . import gwinc
from . import plot_noise
from . import util
......@@ -63,8 +62,6 @@ parser.add_argument('--npoints', '-n', default=NPOINTS,
help="number of frequency points [{}]".format(NPOINTS))
parser.add_argument('--title', '-t',
help="plot title")
parser.add_argument('--matlab', '-m', action='store_true',
help="use MATLAB gwinc engine to calculate noises")
parser.add_argument('--fom',
help="calculate inspiral range for resultant spectrum ('func[:param=val,param=val]')")
parser.add_argument('--no-displacement', '-nd', action='store_false', dest='displacement',
......@@ -140,11 +137,6 @@ def main():
logging.warning("no display, plotting disabled.")
args.plot = False
if args.matlab:
gwinc = gwinc_matlab.gwinc_matlab
else:
gwinc = pygwinc
if args.fom:
import inspiral_range
try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment