Skip to content

Commit

Permalink
Merge pull request #51 from JuliaMath/complex_besseli
Browse files Browse the repository at this point in the history
Airy function in entire complex plane
  • Loading branch information
heltonmc authored Oct 11, 2022
2 parents 372120a + 9cd17e1 commit 32d9bbe
Show file tree
Hide file tree
Showing 10 changed files with 552 additions and 86 deletions.
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ For bug fixes, performance enhancements, or fixes to unexported functions we wil

# Unreleased

# Version 0.2.2

### Added
- Support for all airy functions and derivatives in entire complex plane ([PR #51](https://github.com/JuliaMath/Bessels.jl/pull/51)). These are specialized routines for airy functions instead of relying on connection to besselk. These are a couple digits more accurate and faster than previous versions.

# Version 0.2.1

### Added
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Bessels"
uuid = "0e736298-9ec6-45e8-9647-e4fc86a2fe38"
authors = ["Michael Helton <heltonmc@protonmail.com> and contributors"]
version = "0.2.1"
version = "0.2.2"

[compat]
julia = "1.6"
Expand Down
2 changes: 2 additions & 0 deletions src/Bessels.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ export airyaiprime
export airybi
export airybiprime

const ComplexOrReal{T} = Union{T,Complex{T}}

include("besseli.jl")
include("besselj.jl")
include("besselk.jl")
Expand Down
Loading

2 comments on commit 32d9bbe

@heltonmc
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/69895

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.2 -m "<description of version>" 32d9bbe70aaa28eca1176e0e55a8c4b01197cdaf
git push origin v0.2.2

Please sign in to comment.