Giter VIP home page Giter VIP logo

stochastic's Introduction

Stochastic

Markov chain generator for PHP 5.5.

Implements the PHP \Iterator interface.

Example

<?php

require __DIR__.'/vendor/autoload.php';

$markovChain = new \Stochastic\Markov(['A', 'B', 'C', 'D', 'E'], 100);

foreach ($markovChain as $result) {
    print $result;

    print ' -> ';
}

print 'END' . PHP_EOL;

This script will output a random chain starting with the first state provided:

$ php markov_chain.php 
A -> B -> B -> A -> C -> D -> C -> D -> E -> D -> E -> A -> B -> E -> B -> C ->
A -> C -> A -> B -> D -> C -> B -> E -> C -> C -> D -> A -> E -> D -> E -> C ->
D -> B -> E -> B -> C -> C -> C -> A -> E -> B -> B -> A -> B -> C -> D -> B ->
A -> A -> A -> D -> D -> E -> C -> A -> D -> C -> B -> C -> A -> D -> D -> B ->
C -> A -> C -> E -> A -> B -> C -> C -> C -> C -> A -> A -> D -> E -> A -> E ->
C -> C -> E -> D -> B -> D -> B -> A -> B -> D -> C -> C -> C -> B -> E -> C ->
B -> B -> D -> A -> A -> END

Coming soon

Transition matrix for mapping transition probabilities between states.

stochastic's People

Contributors

adamelso avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.