File: mystic_collapse_plotter

package info (click to toggle)
mystic 0.4.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,924 kB
  • sloc: python: 42,022; makefile: 33; sh: 9
file content (20 lines) | stat: -rw-r--r-- 506 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
#
# Author: Mike McKerns (mmckerns @caltech and @uqfoundation)
# Copyright (c) 1997-2016 California Institute of Technology.
# Copyright (c) 2016-2026 The Uncertainty Quantification Foundation.
# License: 3-clause BSD.  The full license text is available at:
#  - https://github.com/uqfoundation/mystic/blob/master/LICENSE

from mystic import collapse_plotter

__doc__ = collapse_plotter.__doc__

if __name__ == '__main__':

    import sys

    collapse_plotter(sys.argv[1:])


# EOF