Skip to content

Instantly share code, notes, and snippets.

@kamrankr
Last active August 29, 2015 14:17
Show Gist options
  • Save kamrankr/fc4a34e23a428ad07cd9 to your computer and use it in GitHub Desktop.
Save kamrankr/fc4a34e23a428ad07cd9 to your computer and use it in GitHub Desktop.
<?php
$polynomial = array (1,1,0,1); // x^3+x+1
$derivative = array();
for ($i = 1 ; $i < count($polynomial); $i++ )
{
$derivate = $i * $polynomial[$i];
$index = $i - 1;
if ( $index > -1 )
{
$derivative[$index] = $derivate;
}
}
echo '<pre>';
print_r($derivative);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment