Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Timothy Boronczyk:
Composing Music with PHP
May 29, 2013 @ 15:56:37

Timothy Boronczyk has a recent post to his site with an interesting thing to use PHP for - composing music.

I'm not an expert on probability theory, artificial intelligence and machine learning, and even my Music 201 class from years ago has been long forgotten. But if you'll indulge me for the next 10 minutes, I think you'll find that even just a little knowledge can yield impressive results if creatively woven together into an application. I'd like to share with you how PHP can be taught to compose music.

He shows examples of some basic melodies generated by PHP (not the prettiest) and talks about how he "taught" PHP to get better at it. He transcribed other music into Scientific Pitch Notation and used a Markov process to create a "next note selection" method based on the notes around it. He includes the code for his "robot composer" class with its "train" and "compose" methods and and example of its usage.

tagged: compose music scientific pitch notation markov process train compose

Link: http://zaemis.blogspot.com/2013/05/composing-music-with-php.html

Ian Barber's Blog:
PageRank In PHP
Dec 16, 2009 @ 15:45:39

Ian Barber has put together a new blog post that looks at his creation of a simple PageRank-style algorithm, similar to the ideas behind Google's famous ranking technique.

The idea is that there is a random surfer, who starts on web page then browses through in a somewhat random way. [...] This random walk is a Markov chain, a traversal of a matrix that gives the probability of moving to any state from any other state, with the total probabilities for the destinations from any given page adding up to 1. PageRank attempts to find extract a vector of weights from that table, with one weight per page - they aren't related to any particularly query, so are only ever going to be a factor in a page being returned on a results page.

He includes the code to create a page rank rating for a sample set of data with the results showing the differences in ranking based on frequency of times the "page" is linked to and how that relates to the rankings of the other pages.

tagged: pagerank tutorial markov chain

Link:


Trending Topics: