Skip to content

Instantly share code, notes, and snippets.

@ghalimi
Created January 25, 2013 20:03
Show Gist options
  • Save ghalimi/4637388 to your computer and use it in GitHub Desktop.
Save ghalimi/4637388 to your computer and use it in GitHub Desktop.
PPMT Function
// Copyright (c) 2012 Sutoiku, Inc. (MIT License)
function PPMT(rate, period, periods, present, future, type) {
return PMT(rate, periods, present, future, type) - IPMT(rate, period, periods, present, future, type);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment