Skip to content

Commit 7e58333

Browse files
committed
docs
1 parent f345779 commit 7e58333

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,19 @@ before we get to state `L`? What is the probability we will get to state `3` bef
3737

3838
# What the module does
3939

40-
The described problem is [well modeled](https://math.stackexchange.com/a/2912626) by [Absorbing Markov chains](https://en.wikipedia.org/wiki/Absorbing_Markov_chain).
41-
The code performs the necessary matrix calculations in `numpy` and returns the answers as `float` numbers.
40+
It uses [Absorbing Markov chains](https://en.wikipedia.org/wiki/Absorbing_Markov_chain) to solve the problem.
41+
It performs all matrix calculations in `numpy` and returns the answers as `float` numbers.
4242

4343
# How to install
4444

4545
```bash
4646
cd /abc/your_project
47+
48+
# clone the module to ./markov_walk subdir
4749
svn export https://github.com/rtmigo/markov_walk/trunk/markov_walk markov_walk
50+
51+
# install dependencies
52+
pip3 install numpy
4853
```
4954

5055
Now you can `import markov_walk` from `/abc/your_project/your_module.py`

0 commit comments

Comments
 (0)