This package for the Julia language provides an array type (the AxisArray) that knows about its dimension names and axis values. This allows for indexing by name without incurring any runtime overhead. This permits one to implement algorithms that are oblivious to the storage order of the underlying arrays. AxisArrays can also be indexed by the values along their axes, allowing column names or interval selections.
This package provides a function extrapolate that extrapolates a given function f(x)
to f(x0)
, evaluating f
only at a geometric sequence of points > x0
(or optionally < x0
). The key algorithm is Richardson extrapolation using a Neville–Aitken tableau, which adaptively increases the degree of an extrapolation polynomial until convergence is achieved to a desired tolerance (or convergence stalls due to e.g. floating-point errors). This allows one to obtain f(x0)
to high-order accuracy, assuming that f(x0+h)
has a Taylor series or some other power series in h
.
This package provides a wrapper for libtiff
TableTraits defines a generic interface for tabular data.
Documentation at https://melpa.org/#/julia-snail
Documentation at https://melpa.org/#/julia-vterm
Documentation at https://melpa.org/#/julia-shell
This package provides a wrapper for the qtbase library.
This package provides a wrapper for the wayland library.
This package provides a wrapper for the cfitsio library.
This package provides a wrapper for the gettext library.
This package provides a wrapper for the fribidi library.
This package provides a wrapper for the openssl library.
This Julia module provides mbed TLS
libraries and wrappers.
This package provides a lightweight string parsing and representation of angles.
This package provides a Julia grammar for the Tree-sitter library.
This package provides a wrapper for the libuuid library from util-linux.
Minimal package which enables to add custom gradients to Zygote, without depending on Zygote itself.
This package provides a functionality of files download with cURL, wget or HTTP.jl
backends.
This package provides the DiffResult
type, which can be passed to in-place differentiation methods instead of an output buffer.
Quaternions are best known for their suitability as representations of 3D rotational orientation. They can also be viewed as an extension of complex numbers.
This package provides a wrapper around ImageMagick version 6. It was split off from Images.jl
to make image I/O more modular.
The goal of RangeArrays is to provide efficient and convenient array data structures where the columns of the arrays are generated (on the fly) by Ranges.
This package implements methods to take derivatives, gradients, Jacobians, Hessians, and higher-order derivatives of native Julia functions (or any callable object, really) using forward mode automatic differentiation (AD).