An open API service indexing awesome lists of open source software.

https://github.com/cybergeist0/riemann

A program that approximates the definite integral of a relation using Riemann Sum approximations.
https://github.com/cybergeist0/riemann

cpp riemann-sum vectors

Last synced: 7 months ago
JSON representation

A program that approximates the definite integral of a relation using Riemann Sum approximations.

Awesome Lists containing this project

README

          

# Riemann
A program that approximates the definite integral of a relation using Riemann Sum approximations.

## Usage
The input to the program is provided in the file `c.in` and requires three lines of input. It should be structured in the format:

```



...

```

## Types of Approximations
- `left-riemann` - Left Riemann Sum
- `right-riemann` - Right Riemann Sum
- `trapezoidal` - Trapezoidal Rule

Ensure `c.in` contains the appropriate input before execution. The output will be written to console.