Skip to content

Commit

Permalink
BF: Use the default startup options.
Browse files Browse the repository at this point in the history
This should prevent splash-screen from coming up and also figures from popping
up while running this.
arokem committed Jan 20, 2014
1 parent 2a9373d commit c230b79
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pymatbridge/matlab_magic.py
Original file line number Diff line number Diff line change
@@ -130,8 +130,7 @@ def __init__(self, shell,
super(MatlabMagics, self).__init__(shell)
self.cache_display_data = cache_display_data

self.Matlab = pymat.Matlab(matlab, maxtime=maxtime,
startup_options='-noFigureWindows')
self.Matlab = pymat.Matlab(matlab, maxtime=maxtime)
self.Matlab.start()
self.pyconverter = pyconverter
self.matlab_converter = matlab_converter

0 comments on commit c230b79

Please sign in to comment.