search for: pv_tabl

Displaying 2 results from an estimated 2 matches for "pv_tabl".

Did you mean: pv_table
2010 Aug 20
1
Shifting of Principal amount while calculating Present Value
...ates,  PV(A) = 106.2122, PV(A) = 105.7969 and PV(BBB) = 104.8871 ######################################################### ## My problem I have tried the following R code. zero_rate = read.csv('zero_rate_table.csv') zero_rate1 = zero_rate[, -1] cash_flow = c(7, 7, 107) t = c(1,2,3) PV_table = cash_flow / (1+zero_rate1/100)^t ## Then using rowSums, I should get the required result. However, I am getting following output as > PV_table         year_1        year_2       year_3 [1,]  6.756757     6.45078      93.147342 [2,]  6.515675   94.521493      6.680664 [3,] 95.895064    6.71...
2003 Aug 22
3
PAE removal patch for testing
...to validate; - } + } /* * Mapping has changed, invalidate old range and fall through to * handle validating new mapping. */ - if ((origpte & PG_V)) { + if (opa) { int err; err = pmap_remove_pte(pmap, pte, va); if (err) @@ -1949,7 +2129,8 @@ * raise IPL while manipulating pv_table since pmap_enter can be * called at interrupt time. */ - if (pmap_initialized && !(m->flags & (PG_FICTITIOUS|PG_UNMANAGED))) { + if (pmap_initialized && + (m->flags & (PG_FICTITIOUS|PG_UNMANAGED)) == 0) { pmap_insert_entry(pmap, va, mpte, m); pa |= PG...