Estimates the integral of a function in Rust!
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jo! 93854e9635 Clippy cleans my code 12 months ago
src Clippy cleans my code 12 months ago
.gitignore uhh 12 months ago
Cargo.lock uhh 12 months ago
Cargo.toml uhh 12 months ago
README.md Add 'README.md' 12 months ago
integration-by-trapezium-rule.iml uhh 12 months ago

README.md

Fun little program that approximates the area under the curve. (Integration!) It does this by drawing trapezia under a curve, then adds more over time to get a better approximation of the real area.

This program is not very capable, and while it eventually creates a good approximation, it will take a while. This was written for fun and should not be used for anything serious! :)

Inspired by 3blue1brown's Essense of Calculus series