Git Product home page Git Product logo

dp_ucph's People

Contributors

adamhallengreen avatar bschjerning avatar jacoropke avatar jeppemadsen1987 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

dp_ucph's Issues

minor suggestion for eqb function in zurcher.m file

Hi I am a ph.d student in Seoul, Korea(South). I am currently reviewing Rust(1987) paper.
I really appreciate this repo and the associated lectures on your Youtube channel.
Thank you very much.

Reviewing the code I found a minor typo in zurcher.m file.
Below is the ergodic function part of zurcher.m file.
The 5th line of the ergodic function checks whether the matrix p is symmetric.
Thus the code should check whether the first and second dimensions of p are the same.
Then the fifth line would be if n ~= size(p, 2).
This is just a minor issue i think.

Regards,
Henry.

    function ed=ergodic(p);
      % ergodic.m: finds the invariant distribution for 
      % an NxN Markov transition probability
      n=size(p,1);
      if n ~= size(p,1);
        fprint('Error: p must be a square matrix\n');
        ed=NaN;
      else
        ap=eye(n)-p';
        ap=[[ap; ones(1,n)], ones(n+1,1)];
        if (rank(ap) < n+1);
          fprintf('Error: transition matrix p is not ergodic\n');
          ed=NaN;
        else
          ed=[ones(n,1); 2];
          ed=ap\ed;
          ed(end)=[];
          ed=reshape(ed,1,[]); %row vector
        end;
      end
    end % end of ergodic

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.