Searched refs:nPayment (Results 1 – 1 of 1) sorted by relevance
2243 double nPayment = ValueToDouble(pThis, argTwo.get()); in Apr() local2245 if (nPrincipal <= 0 || nPayment <= 0 || nPeriods <= 0) { in Apr()2250 double r = 2 * (nPeriods * nPayment - nPrincipal) / (nPeriods * nPrincipal); in Apr()2255 double nRet = r * nTemp / (nTemp - 1) - nPayment / nPrincipal; in Apr()2271 nRet = r * nTemp / (nTemp - 1) - nPayment / nPrincipal; in Apr()2372 float nPayment = ValueToFloat(pThis, argThree.get()); in IPmt() local2375 if ((nPrincipalAmount <= 0) || (nRate <= 0) || (nPayment <= 0) || in IPmt()2383 (int32_t)((log10((float)(nPayment / nPrincipalAmount)) - in IPmt()2384 log10((float)(nPayment / nPrincipalAmount - nRateOfMonth))) / in IPmt()2388 if (nPayment < nPrincipalAmount * nRateOfMonth) { in IPmt()[all …]