Skip to content

Tags: JuliaMath/NumericalIntegration.jl

Tags

v0.3.4

Toggle v0.3.4's commit message
[Diff since v0.3.3](v0.3.3...v0.3.4)

**Merged pull requests:**
- Compatibility with Interpolations ≥ 0.14.3 (#46) (@wg030)
- Fix interpolations compat (#50) (@oscardssmith)
- add CI (#51) (@oscardssmith)

**Closed issues:**
- Multidimensional example is not working (#37)

v0.3.3

Toggle v0.3.3's commit message
## NumericalIntegration v0.3.3

[Diff since v0.3.2](v0.3.2...v0.3.3)


**Closed issues:**
- Slower than Trapz.jl (#18)
- Problems with Romberg and Simpson integration (#31)
- Update TagBot (#36)

**Merged pull requests:**
- Update README.md (#38) (@m-wells)
- fix dispatch issues (#40) (@m-wells)

v0.3.2

Toggle v0.3.2's commit message
## NumericalIntegration v0.3.2

[Diff since v0.3.1](v0.3.1...v0.3.2)



**Merged pull requests:**
- Create CompatHelper.yml (#32) (@SebastianM-C)
- CompatHelper: add new compat entry for "Interpolations" at version "0.13" (#33) (@github-actions[bot])

v0.3.1

Toggle v0.3.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update Project.toml

@JuliaRegistrator register

v0.3.0

Toggle v0.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update Project.toml

Fix the UUID to conform to what's in the Julia registry

v0.2.0

Toggle v0.2.0's commit message
Added function to perform cumulative integrals, and array inputs (#15)

* (1) Added function cumul_integrate to perform cumulative integrals (similar to functions like cumtrapz in Matlab)
(2) Added methods to compute integrals and cumulative integrals for each column of an input Array
(3) updated documentation of functions
(4) updated readme

* Modified name of function for cumulative integrals to "cumul_integrate". New methods to integrate along specific dimensions of a matrix. Use Trapzedoial() (instead of TrapezoidalFast()) as default method, for safety.

v0.1.0

Toggle v0.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update .travis.yml

v0.0.4

Toggle v0.0.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update .travis.yml

v0.0.3

Toggle v0.0.3's commit message
Correct the TrapezoidalEven() method and optimize the performance a l…

…ittle bit. (#8)

* Make integrations work for complex numbers as well.

* Correct the formula of the TrapezoidalEven method.

* Optimize the performance by reducing some unnecessary operations.

v0.0.2

Toggle v0.0.2's commit message
Make integrations work for complex numbers as well. (#7)