Package linear_operators :: Package wrappers
[hide private]
[frames] | no frames]

Source Code for Package linear_operators.wrappers

 1  # import wrappers if the corresponding module exist 
 2  try: 
 3      import pywt 
 4  except ImportError: 
 5      pass 
 6   
 7  if 'pywt' in locals(): 
 8      from pywt_lo import * 
 9      del pywt 
10   
11  try: 
12      import fht 
13  except ImportError: 
14      pass 
15   
16  if 'fht' in locals(): 
17      from fht_lo import fht 
18