Nothing
#' @title Hankel Functions
#' @description Functions to compute cyclic and spherical Hankel functions of the first and second kinds.
#' @seealso [Boost Documentation](https://www.boost.org/doc/libs/latest/libs/math/doc/html/math_toolkit/hankel.html) for more details on the mathematical background.
#' @name hankel_functions
#' @param v Order of the Hankel function
#' @param x Argument of the Hankel function
#' @return A single complex value with the computed Hankel function.
#' @examples
#' cyl_hankel_1(2, 0.5)
#' cyl_hankel_2(2, 0.5)
#' sph_hankel_1(2, 0.5)
#' sph_hankel_2(2, 0.5)
NULL
#' @rdname hankel_functions
#' @export
cyl_hankel_1 <- function(v, x) {
.Call(`cyl_hankel_1_`, v, x)
}
#' @rdname hankel_functions
#' @export
cyl_hankel_2 <- function(v, x) {
.Call(`cyl_hankel_2_`, v, x)
}
#' @rdname hankel_functions
#' @export
sph_hankel_1 <- function(v, x) {
.Call(`sph_hankel_1_`, v, x)
}
#' @rdname hankel_functions
#' @export
sph_hankel_2 <- function(v, x) {
.Call(`sph_hankel_2_`, v, x)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.