You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pywafo/wafo/plotbackend.py

18 lines
581 B
Python

"""
Modify this file if another plotbackend is wanted.
"""
if False:
try:
from scitools import easyviz as plotbackend
print('wafo.wafodata: plotbackend is set to scitools.easyviz')
except:
print('wafo: Unable to load scitools.easyviz as plotbackend')
plotbackend = None
else:
try:
from matplotlib import pyplot as plotbackend
print('wafo.wafodata: plotbackend is set to matplotlib.pyplot')
except:
print('wafo: Unable to load matplotlib.pyplot as plotbackend')
plotbackend = None