A community of PHP developers offering assistance, advice, discussion, and friendship.
Skip to content
Moderator: General Moderators
Post by m2babaey » Mon Oct 06, 2008 8:55 am
Code: Select all
function determinant($mtrix, $n){ if ($n=1) { // do something } else { return aclcaulationssss*determinant($mtrix, $n-1); } }
Post by onion2k » Mon Oct 06, 2008 8:56 am
Return to “PHP - Code”