amortization-schedule 0.1.1

Loan amortization: monthly payment, per-period breakdown, total interest, remaining balance.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# amortization-schedule

Loan amortization math: fixed-rate monthly payment, per-period interest/principal split,
remaining balance, and lifetime interest. Pure Rust, no deps.

Same math behind the [AssetLoanCalculator](https://assetloancalculator.com/) amortization tool.

```rust
use amortization_schedule::{monthly_payment, total_interest};
let payment = monthly_payment(100_000.0, 0.07, 360); // ~665.30
let interest = total_interest(100_000.0, 0.07, 360);  // lifetime interest
```

License: MIT