Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:23

0001 #!/usr/bin/env python
0002 
0003 import numpy as np
0004 from numpy.linalg import multi_dot
0005 
0006 from opticks.ana.fold import Fold
0007 from opticks.ana.eprint import eprint, epr
0008 from opticks.sysrap.stree import stree, snode, snd
0009 
0010 if __name__ == '__main__':
0011 
0012     snode.Type()
0013     snd.Type()
0014 
0015     f = Fold.Load("$FOLD/stree", symbol="f")
0016     print(repr(f))
0017 
0018     st = stree(f)
0019     print(repr(st))
0020 
0021 
0022