|
|
|||
File indexing completed on 2026-04-09 07:49:15
0001 #!/usr/bin/env python 0002 0003 import numpy as np 0004 from opticks.ana.fold import Fold 0005 0006 if __name__ == '__main__': 0007 f = Fold.Load(symbol="f") 0008 print(repr(f)) 0009 0010 a = f.a 0011 b = f.b 0012 0013 a[np.where(a==1e9)] = 1e6 # kludge for clearer repr 0014 b[np.where(b==1e9)] = 1e6 0015 0016 pass
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|