Giter Club home page Giter Club logo

randomprocesses.jl's Introduction

RandomProcesses.jl

Introduction

RandomProcesses.jl is a package for simulling stochastics processes in Julia in a easy way.

At the moment the package has 8 functions that simulling the following stochastic processes:

  • SARMA
  • Ramdom Walk
  • Weiner
  • Martingale
  • Galton Watson
  • Markov Chain
  • Poisson
  • Neural (simuling the results of neural network)

Exemples

Importing RandomProcesses and PyPlot

using RandomProcesses, PyPlot, Distributions

Random Walk

for _ in 1:5
  plot(RandomWalk())
end

RW.png

Poisson Process

for _ in 1:5
  plot(PoissonProcess())
end

Poisson.png

Neural Process

function f(x)
    return exp.(x)./(1 .+ exp.(x))
end

function g(x)
    return sum(x)
end

for _ in 1:5
    plot(NeuralProcess(Activate = [f, g], Len = 30))
end

Neural.png

Coments

  1. Almost functions need the package "Distribution" for execute.
  2. You has that declare a vector of functions in each leyaer for neural process execute.
  3. This is my first package, please have pacience. Send criticisms and suggestions to [email protected]. I would also like to know out of curiosity in which projects the patent is being used.

randomprocesses.jl's People

Contributors

joaquimbermudes avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 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.