-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #148 from lcgraham/master
Adds sorting for tails and creation of simple indicator functions
- Loading branch information
Showing
21 changed files
with
929 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,29 @@ | ||
# Copyright (C) 2014-2015 The BET Development Team | ||
|
||
__all__ = ['sampling', 'calculateP', 'postProcess', 'sensitivity', 'util', 'Comm'] | ||
""" | ||
Butler, Estep, Tavener Method | ||
This package provides tools for solving stochastic inverse problems using a | ||
measure-theoretic. It is named for the developers of the key algorithm in | ||
:mod:`bet.calculateP.calculateP`. | ||
Comm :mod:`~bet.Comm` provides a work around for users who do not which to install | ||
:program:``mpi4py``. | ||
util :mod:`~bet.util` provides some general use methods for creating grids, | ||
checking/fixing dimensions, and globalizing arrays. | ||
calculateP :mod:`~bet.calculateP` provides tools to approximate probabilities. | ||
sampling :mod:`~bet.sampling` provides various sampling algorithms. | ||
sensitivity :mod:`~bet.sensitivity` provides tools for approximating | ||
derivatives and optimally choosing quantities of interest. | ||
postProcess :mod:`~bet.postProcess` provides plotting tools and tools to sort | ||
samples by probabilities. | ||
""" | ||
|
||
__all__ = ['sampling', 'calculateP', 'postProcess', 'sensitivity', 'util', | ||
'Comm'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.