diff options
author | John Denker <jsd@av8n.com> | 2021-10-18 11:38:41 -0700 |
---|---|---|
committer | John Denker <jsd@av8n.com> | 2021-10-18 11:55:19 -0700 |
commit | df32aaa04e93ec4f83a4eb245970009e467b59d5 (patch) | |
tree | 6fc49011f08ac51ccd39e4c025674964c173e625 /README.md | |
parent | 74ddd0381aa1b1a90eb0d5300fa576cb2348eeac (diff) |
add rudimentary README file
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..c43e61a --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +Program to fit to Poisson distributed data. + +Uses actual Poisson probability (i.e. not Gaussians, and +therefore not least squares). + +### Installation + +Download using:<br> +``git clone https://www.av8n.com/cgit/poissfit`` + +Requires the `libnlopt-cxx-dev` package, which is easily installable on Ubuntu and similar platforms. + +In the poissfit directory, compile using a simple `make` +command. That works on my Ubuntu platform. Other platforms are likely +to work; the code uses fairly basic language features (c++11 or +later). + +Some data files, suitable for input to the program, can be found +[here](https://github.com/paulnord/bayesian_analysis). |