Snippets tagged random walk

  • Random walk

    Create sequence of floating point values generated by random walk process. Functional solution using sequence expressions and yield! construct in a tail-call position.

    39 people like this

    Posted: 13 years ago by Tomas Petricek

  • Random Walk

    Random walk on integers starting at zero. At each step, we either add or subtract one depending on a random coin flip. The code uses Seq.unfold to generate infinite sequence.

    53 people like this

    Posted: 13 years ago by James