Batteries-included namespace for the Emmy library.
The purpose of emmy.env
is to bundle all of the functions used
in Structure and Interpretation of Classical
Mechanics and Functional Differential
Geometry
into a single scope. The following form will import everything
from emmy.env
into your REPL:
(require '[emmy.env :as e])
(e/bootstrap-repl!)
Or, in Clojure:
(require '[emmy.env :as e :refer :all])
Batteries-included namespace for the [Emmy](https://github.com/mentat-collective/emmy/) library. The purpose of [[emmy.env]] is to bundle all of the functions used in [Structure and Interpretation of Classical Mechanics](https://tgvaughan.github.io/sicm/) and [Functional Differential Geometry](https://mitpress.mit.edu/books/functional-differential-geometry) into a single scope. The following form will import everything from [[emmy.env]] into your REPL: ```clojure (require '[emmy.env :as e]) (e/bootstrap-repl!) ``` Or, in Clojure: ```clojure (require '[emmy.env :as e :refer :all]) ```
(*)
(* x)
(* x y)
(* x y & more)
Generic implementation of *
. Returns the product of all supplied
arguments. (*)
returns 1, the multiplicative identity.
When applied between numbers, acts like clojure.core/*
. Dispatch is open,
however, making it possible to 'multiply' types wherever the behavior is
mathematically sound.
For example:
(* 2 #emmy/complex "3 + 1i")
;;=> #emmy/complex "6 + 2i"
Generic implementation of `*`. Returns the product of all supplied arguments. `(*)` returns 1, the multiplicative identity. When applied between numbers, acts like `clojure.core/*`. Dispatch is open, however, making it possible to 'multiply' types wherever the behavior is mathematically sound. For example: ```clojure (* 2 #emmy/complex "3 + 1i") ;;=> #emmy/complex "6 + 2i" ```
(+)
(+ x)
(+ x y)
(+ x y & more)
Generic implementation of +
. Returns the sum of all supplied arguments. (+)
returns 0, the additive identity.
When applied between numbers, acts like clojure.core/+
. Dispatch is open,
however, making it possible to 'add' types wherever the behavior is
mathematically sound.
For example:
(+ [1 2 3] [2 3 4])
;;=> (up 3 5 7)
Generic implementation of `+`. Returns the sum of all supplied arguments. `(+)` returns 0, the additive identity. When applied between numbers, acts like `clojure.core/+`. Dispatch is open, however, making it possible to 'add' types wherever the behavior is mathematically sound. For example: ```clojure (+ [1 2 3] [2 3 4]) ;;=> (up 3 5 7) ```
(-)
(- x)
(- x y)
(- x y & more)
Generic implementation of -
.
If one argument is supplied, returns the negation of a
. Else returns the
difference of the first argument a
and the sum of all remaining
arguments. (-)
returns 0.
When applied between numbers, acts like clojure.core/-
. Dispatch is open,
however, making it possible to 'subtract' types wherever the behavior is
mathematically sound.
For example:
(- [1 2 3] [2 3 4])
;;=> (up -1 -1 -1)
(- [1 10])
;;=> (up -1 -10)
Generic implementation of `-`. If one argument is supplied, returns the negation of `a`. Else returns the difference of the first argument `a` and the sum of all remaining arguments. `(-)` returns 0. When applied between numbers, acts like `clojure.core/-`. Dispatch is open, however, making it possible to 'subtract' types wherever the behavior is mathematically sound. For example: ```clojure (- [1 2 3] [2 3 4]) ;;=> (up -1 -1 -1) (- [1 10]) ;;=> (up -1 -10) ```
(->H-state t q p)
(->H-state ??)
(quote ([t q p]))
Given a time t
, coordinate tuple (or scalar) q
and momentum tuple (or
scalar) p
, returns a 'Hamiltonian state tuple', i.e., the state expected by a
Hamiltonian.
Given a time `t`, coordinate tuple (or scalar) `q` and momentum tuple (or scalar) `p`, returns a 'Hamiltonian state tuple', i.e., the state expected by a Hamiltonian.
Converts an S-expression to printable infix form. Numeric exponents are written as superscripts. Partial derivatives get subscripts.
Converts an S-expression to printable infix form. Numeric exponents are written as superscripts. Partial derivatives get subscripts.
Converts an S-expression to JavaScript.
Converts an S-expression to JavaScript.
(->L-state t q qdot & derivs)
Given a time t
, coordinate tuple (or scalar) q
, velocity tuple (or scalar)
qdot
and any number of additional higher-order derivative tuples (or
scalars), returns a 'Local tuple', i.e., the state expected by a Lagrangian.
Given a time `t`, coordinate tuple (or scalar) `q`, velocity tuple (or scalar) `qdot` and any number of additional higher-order derivative tuples (or scalars), returns a 'Local tuple', i.e., the state expected by a Lagrangian.
(->TeX expr & {:keys [equation]})
Convert the given expression to TeX format, as a string.
If you set the :equation
keyword argument to a truthy value, the result will
be wrapped in an equation environment. :equation <string>
will insert a
\label{<string>}
entry inside the equation environment.
For example:
(let [expr (+ 'x 'xy)]
(println
(->TeX expr :equation "label!")))
\begin{equation}
\label{label!}
x + y
\end{equation}
Convert the given expression to TeX format, as a string. If you set the `:equation` keyword argument to a truthy value, the result will be wrapped in an equation environment. `:equation <string>` will insert a `\label{<string>}` entry inside the equation environment. For example: ```clojure (let [expr (+ 'x 'xy)] (println (->TeX expr :equation "label!"))) \begin{equation} \label{label!} x + y \end{equation} ```
(->tex-equation expr & {:keys [label]})
Returns a string containing a LaTeX representation of expr
, wrapped in an
equation
environment.
Optionally supply a :label
keyword argument to set a custom label.
Returns a string containing a LaTeX representation of `expr`, wrapped in an `equation` environment. Optionally supply a `:label` keyword argument to set a custom label.
The negation of the mathematical constant Pi.
The negation of the mathematical constant [Pi](https://en.wikipedia.org/wiki/Pi).
The negation of the mathematical constant Tau, equal to $-2\pi$.
The negation of the mathematical constant [Tau](https://en.wikipedia.org/wiki/Turn_(angle)#Tau_proposals), equal to $-2\pi$.
(/)
(/ x)
(/ x y)
(/ x y & more)
Generic implementation of /
.
If one argument is supplied, returns the multiplicative inverse of a
. Else
returns the result of dividing first argument a
by the product of all
remaining arguments. (/)
returns 1, the multiplicative identity.
When applied between numbers, acts like clojure.core//
. Dispatch is open,
however, making it possible to 'divide' types wherever the behavior is
mathematically sound.
For example:
(/ [2 4 6] 2)
;;=> (up 1 2 3)
Generic implementation of `/`. If one argument is supplied, returns the multiplicative inverse of `a`. Else returns the result of dividing first argument `a` by the product of all remaining arguments. `(/)` returns 1, the multiplicative identity. When applied between numbers, acts like `clojure.core//`. Dispatch is open, however, making it possible to 'divide' types wherever the behavior is mathematically sound. For example: ```clojure (/ [2 4 6] 2) ;;=> (up 1 2 3) ```
(abs a)
(abs ??)
(quote ([a]))
generic abs
generic abs
(acceleration local)
(acceleration ??)
(quote ([local]))
Returns the acceleration element of a local tuple (by convention, the fourth element).
See coordinate
for more detail.
Returns the acceleration element of a local tuple (by convention, the fourth element). See [[coordinate]] for more detail.
(acos a)
(acos ??)
(quote ([a]))
generic acos.
Computes the inverse cosine of the supplied argument a
.
Defaults to atan(sqrt(1-x^2)/x)
.
generic acos. Computes the inverse cosine of the supplied argument `a`. Defaults to `atan(sqrt(1-x^2)/x)`.
(acosh a)
(acosh ??)
(quote ([a]))
generic acosh.
Computes the inverse hyperbolic
cosine of the supplied
argument a
.
defaults to 2 ln(sqrt((x+1)/2) + sqrt((x-1)/2))
.
generic acosh. Computes the [inverse hyperbolic cosine](https://mathworld.wolfram.com/InverseHyperbolicCosine.html) of the supplied argument `a`. defaults to `2 ln(sqrt((x+1)/2) + sqrt((x-1)/2))`.
(acot a)
(acot ??)
(quote ([a]))
generic acot.
Computes the inverse
cotangent of the supplied
argument a
.
defaults to pi/2 - atan(x)
.
generic acot. Computes the [inverse cotangent](https://mathworld.wolfram.com/InverseCotangent.html) of the supplied argument `a`. defaults to `pi/2 - atan(x)`.
(acoth a)
(acoth ??)
(quote ([a]))
generic acoth.
Computes the inverse hyperbolic
cotangent of
the supplied argument a
.
defaults to 1/2 ln((x+1)/(x-1))
.
generic acoth. Computes the [inverse hyperbolic cotangent](https://mathworld.wolfram.com/InverseHyperbolicCotangent.html) of the supplied argument `a`. defaults to `1/2 ln((x+1)/(x-1))`.
(acsc a)
(acsc ??)
(quote ([a]))
generic acsc.
Computes the inverse
cosecant of the supplied
argument a
.
defaults to atan(1 / sqrt(x^2 - 1))
.
generic acsc. Computes the [inverse cosecant](https://mathworld.wolfram.com/InverseCosecant.html) of the supplied argument `a`. defaults to `atan(1 / sqrt(x^2 - 1))`.
(acsch a)
(acsch ??)
(quote ([a]))
generic acsch.
Computes the inverse hyperbolic
cosecant of the
supplied argument a
.
defaults to ln((1 + sqrt(1+x^2)) / x)
.
generic acsch. Computes the [inverse hyperbolic cosecant](https://mathworld.wolfram.com/InverseHyperbolicCosecant.html) of the supplied argument `a`. defaults to `ln((1 + sqrt(1+x^2)) / x)`.
(add-v:cs v1:c v2:c)
(add-v:cs ??)
(quote ([v1:c v2:c]))
(add-velocities v1 v2)
(add-velocities ??)
(quote ([v1 v2]))
velocities must be in meters/second, since we don't yet have units support.
velocities must be in meters/second, since we don't yet have units support.
(Alt form)
(Alt ??)
(quote ([form]))
Returns the alternation of the supplied differential form
.
Returns the alternation of the supplied differential `form`.
(alt-wedge & args)
Alternative definition of wedge
in terms of alternation.
Alternative definition of [[wedge]] in terms of alternation.
(ancestor-frame _)
(ancestor-frame ??)
(quote ([_]))
Returns the ancestor [[IFrame]] instance of this frame, or nil if there is no ancestor.
Returns the ancestor [[IFrame]] instance of this frame, or nil if there is no ancestor.
(angle a)
(angle ??)
(quote ([a]))
generic angle
generic angle
(angle-axis->rotation-matrix theta [x y z])
(angle-axis->rotation-matrix ??)
(quote ([theta [x y z]]))
(anticommutator o p)
(anticommutator ??)
(quote ([o p]))
(arg-scale f & factors)
Takes a function f
and a sequence of factors
, and returns a new function
that multiplies each factor by the corresponding argument of f
. Too many or
two few factors are ignored.
((arg-scale square 3) 4) ==> 144
((arg-scale square 3 2 1) 4) ==> 144
Takes a function `f` and a sequence of `factors`, and returns a new function that multiplies each factor by the corresponding argument of `f`. Too many or two few factors are ignored. ```clojure ((arg-scale square 3) 4) ==> 144 ((arg-scale square 3 2 1) 4) ==> 144 ```
(arg-shift f & shifts)
Takes a function f
and a sequence of shifts
, and returns a new function
that adds each shift to the corresponding argument of f
. Too many or two few
shifts are ignored.
((arg-shift square 3) 4) ==> 49
((arg-shift square 3 2 1) 4) ==> 49
Takes a function `f` and a sequence of `shifts`, and returns a new function that adds each shift to the corresponding argument of `f`. Too many or two few shifts are ignored. ```clojure ((arg-shift square 3) 4) ==> 49 ((arg-shift square 3 2 1) 4) ==> 49 ```
(argument-types f)
(argument-types ??)
(quote ([f]))
Given an operator or function f
, returns its registered vector of argument
types, or []
if none exist.
argument types are, for example,
[::ff/oneform-field ::vf/vector-field ::vf/vector-field]
for a Christoffel-2
, which takes one oneform field and two vector fields.
Given an operator or function `f`, returns its registered vector of argument types, or `[]` if none exist. argument types are, for example, ```clojure [::ff/oneform-field ::vf/vector-field ::vf/vector-field] ``` for a `Christoffel-2`, which takes one oneform field and two vector fields.
(arity f)
(arity ??)
(quote ([f]))
Return the cached or obvious arity of f
if we know it. Otherwise
delegates to heavy duty reflection.
Return the cached or obvious arity of `f` if we know it. Otherwise delegates to heavy duty reflection.
(asec a)
(asec ??)
(quote ([a]))
generic asec.
Computes the inverse
secant of the supplied
argument a
.
defaults to atan(sqrt(x^2 - 1))
.
generic asec. Computes the [inverse secant](https://mathworld.wolfram.com/InverseSecant.html) of the supplied argument `a`. defaults to `atan(sqrt(x^2 - 1))`.
(asech a)
(asech ??)
(quote ([a]))
generic asech.
Computes the inverse hyperbolic
secant of the
supplied argument a
.
defaults to ln((1 + sqrt(1-x^2)) / x)
.
generic asech. Computes the [inverse hyperbolic secant](https://mathworld.wolfram.com/InverseHyperbolicSecant.html) of the supplied argument `a`. defaults to `ln((1 + sqrt(1-x^2)) / x)`.
(asin a)
(asin ??)
(quote ([a]))
generic asin.
Computes the inverse sine of the supplied argument a
.
Defaults to atan(x/sqrt(1-x^2))
.
generic asin. Computes the inverse sine of the supplied argument `a`. Defaults to `atan(x/sqrt(1-x^2))`.
(asinh a)
(asinh ??)
(quote ([a]))
generic asinh.
Computes the inverse hyperbolic
sine of the
supplied argument a
.
defaults to ln(x + sqrt(1 + x^2))
.
generic asinh. Computes the [inverse hyperbolic sine](https://mathworld.wolfram.com/InverseHyperbolicSine.html) of the supplied argument `a`. defaults to `ln(x + sqrt(1 + x^2))`.
(atan a)
(atan a b)
(atan ??)
(quote ([a] [a b]))
generic atan.
Computes the inverse tangent of the supplied argument a
. Given two
arguments a
and b
, returns the inverse tangent of the angle formed by the
point (b, a)
in a 2-dimensional euclidean plane.
The two-argument version is sometimes called Atan2.
generic atan. Computes the inverse tangent of the supplied argument `a`. Given two arguments `a` and `b`, returns the inverse tangent of the angle formed by the point `(b, a)` in a 2-dimensional euclidean plane. The two-argument version is sometimes called [Atan2](https://en.wikipedia.org/wiki/Atan2).
(atanh a)
(atanh ??)
(quote ([a]))
generic atanh.
Computes the inverse hyperbolic
tangent of the
supplied argument a
.
defaults to 1/2 ln((1+x)/(1-x))
.
generic atanh. Computes the [inverse hyperbolic tangent](https://mathworld.wolfram.com/InverseHyperbolicTangent.html) of the supplied argument `a`. defaults to `1/2 ln((1+x)/(1-x))`.
(basis->basis-over-map mu:N->M basis-on-M)
(basis->basis-over-map ??)
(quote ([mu:N->M basis-on-M]))
(basis->coordinate-system b)
(basis->coordinate-system ??)
(quote ([b]))
(basis->dimension b)
(basis->dimension ??)
(quote ([b]))
Extract the dimension from the given basis object b
.
Extract the dimension from the given basis object `b`.
(basis->oneform-basis b)
(basis->oneform-basis ??)
(quote ([b]))
Extract the dual basis from the given basis object b
.
Extract the dual basis from the given basis object `b`.
(basis->vector-basis b)
(basis->vector-basis ??)
(quote ([b]))
Extract the vector basis from the given basis object b
.
Extract the vector basis from the given basis object `b`.
(basis-components->oneform-field components oneform-basis)
(basis-components->oneform-field ??)
(quote ([components oneform-basis]))
Given a structure of components
functions defined on manifold points and and
a matching oneform-basis
(of identical structure),
Returns a new one-form field that
passes its vector-field argument to oneform-basis
, returning a new
equivalent structure with each slot populated by functions from a manifold
point to the directional derivative (using the vector field) in that
coordinate direction
contracts the result of that operation with the result of applying each
component in components
to the manifold point.
NOTE:
components
are evaluated at a manifold point, not its coordinatesoneform-field->basis-components
Given a structure of `components` functions defined on manifold points and and a matching `oneform-basis` (of identical structure), Returns a new one-form field that - passes its vector-field argument to `oneform-basis`, returning a new equivalent structure with each slot populated by functions from a manifold point to the directional derivative (using the vector field) in that coordinate direction - contracts the result of that operation with the result of applying each component in `components` to the manifold point. NOTE: - This is for any basis, not just a coordinate basis - The `components` are evaluated at a manifold point, not its coordinates - Given a dual basis, you can retrieve the original components with [[oneform-field->basis-components]]
(basis-components->vector-field components vector-basis)
(basis-components->vector-field ??)
(quote ([components vector-basis]))
Given a structure of components
and and a matching vector-basis
(of
identical structure with orientations flipped), returns a new vector field
generated contracting by these two structures together.
The returned vector field passes its input function to the operator generated by this contraction.
For example:
(let-coordinates [[x y] R2-rect]
(basis-components->vector-field
(up x y)
(coordinate-system->vector-basis R2-rect)))
;; => (+ (* x d:dx) (* y d:dy))
NOTE:
components
are evaluated at a manifold point, not its coordinatesvector-field->basis-components
Given a structure of `components` and and a matching `vector-basis` (of identical structure with orientations flipped), returns a new vector field generated contracting by these two structures together. The returned vector field passes its input function to the operator generated by this contraction. For example: ```clojure (let-coordinates [[x y] R2-rect] (basis-components->vector-field (up x y) (coordinate-system->vector-basis R2-rect))) ;; => (+ (* x d:dx) (* y d:dy)) ``` NOTE: - This is for any basis, not just a coordinate basis - The `components` are evaluated at a manifold point, not its coordinates - Given a dual basis, you can retrieve the original components with [[vector-field->basis-components]]
(basis? x)
(basis? ??)
(quote ([x]))
Returns true if x
is a basis, false otherwise.
Returns true if `x` is a basis, false otherwise.
(bigint? x)
(bigint? ??)
(quote ([x]))
Returns true if the supplied x
is a BigInt
, false otherwise.
Returns true if the supplied `x` is a `BigInt`, false otherwise.
(binomial-series alpha)
(binomial-series ??)
(quote ([alpha]))
Returns a [[PowerSeries]] instance representing a Binomial series, i.e., the taylor series of the function $f$ given by
$$f(x) = (1 + x)^\alpha$$
Returns a [[PowerSeries]] instance representing a [Binomial series](https://en.wikipedia.org/wiki/Binomial_series), i.e., the taylor series of the function $f$ given by ``` $$f(x) = (1 + x)^\alpha$$ ```
(boost-direction frame)
(boost-direction ??)
(quote ([frame]))
(bootstrap-repl!)
Bootstraps a repl or Clojure namespace by requiring all public vars
from emmy.env
.
(This will only work at a repl in ClojureScript.)
TODO add :rename
, :exclude
support.
Bootstraps a repl or Clojure namespace by requiring all public vars from [[emmy.env]]. (This will only work at a repl in ClojureScript.) TODO add `:rename`, `:exclude` support.
(brent-max f a b opts)
(brent-max ??)
(quote ([f a b opts]))
For convenience, we also provide the sister-procedure for finding the maximum of a unimodal function using Brent's method.
Negate the function, minimize, negate the result.
See brent-min
for all supported opts
.
For convenience, we also provide the sister-procedure for finding the maximum of a unimodal function using Brent's method. Negate the function, minimize, negate the result. See [[brent-min]] for all supported `opts`.
(brent-min f a b)
(brent-min f
a
b
{:keys [relative-threshold absolute-threshold initial-guess maxiter
maxfun callback]
:or {relative-threshold default-relative-threshold
absolute-threshold default-absolute-threshold
initial-guess (initial-brent-guess a b)
maxiter 1000
callback (constantly nil)}})
Find the minimum of the function f: R -> R in the interval [a,b] using Brent's Method, described by Richard Brent in Algorithms for Minimization without Derivatives.
Brent's method is a combination of a golden section search with a parabolic interpolation step. Parabolic interpolation can go wild if the candidate point is close to colinear with the search bounds, or of the points are too close together.
Brent's method prevents this by applying an internal test that forces a golden
section step every so often. (If you want the details, see parabola-valid?
above.)
brent-min
supports the following optional keyword arguments:
:callback
: if supplied, the supplied fn will be invoked at each
intermediate point with the iteration count and the values of x and f(x) at
each search step.
:initial-guess
: the first internal point checked by the algorithm. Defaults
to ([[initial-brent-guess]] a b)
.
:relative-threshold
: multiplied by each guess to determine a relative
threshold. Defaults to 1.0e-11.
:absolute-threshold
: a smaller absolute threshold that applies when the
candidate minimum point is close to 0. defaults to around 1.49e8, the sqrt of
the machine tolerance. You won't gain any benefit attempting to set the value
less than the default.
:maxiter
: Maximum number of iterations allowed for the minimizer. Defaults
to 1000.
:maxfun
: Maximum number of times the function can be evaluated before
exiting. Defaults to (inc maxiter)
.
Find the minimum of the function f: R -> R in the interval [a,b] using Brent's Method, described by Richard Brent in [Algorithms for Minimization without Derivatives](https://books.google.com/books?id=AITCAgAAQBAJ&q=Brent%E2%80%99s#v=onepage&q=Parabolic&f=false). Brent's method is a combination of a golden section search with a parabolic interpolation step. Parabolic interpolation can go wild if the candidate point is close to colinear with the search bounds, or of the points are too close together. Brent's method prevents this by applying an internal test that forces a golden section step every so often. (If you want the details, see `parabola-valid?` above.) [[brent-min]] supports the following optional keyword arguments: - `:callback`: if supplied, the supplied fn will be invoked at each intermediate point with the iteration count and the values of x and f(x) at each search step. - `:initial-guess`: the first internal point checked by the algorithm. Defaults to `([[initial-brent-guess]] a b)`. - `:relative-threshold`: multiplied by each guess to determine a relative threshold. Defaults to 1.0e-11. - `:absolute-threshold`: a smaller absolute threshold that applies when the candidate minimum point is close to 0. defaults to around 1.49e8, the sqrt of the machine tolerance. You won't gain any benefit attempting to set the value less than the default. - `:maxiter`: Maximum number of iterations allowed for the minimizer. Defaults to 1000. - `:maxfun`: Maximum number of times the function can be evaluated before exiting. Defaults to `(inc maxiter)`.
(Cartan->basis C)
(Cartan->basis ??)
(quote ([C]))
(Cartan->Cartan-over-map Cartan map)
(Cartan->Cartan-over-map ??)
(quote ([Cartan map]))
(Cartan->Christoffel Cartan)
(Cartan->Christoffel ??)
(quote ([Cartan]))
(Cartan->forms C)
(Cartan->forms ??)
(quote ([C]))
(Cartan-transform cartan basis-prime)
(Cartan-transform ??)
(quote ([cartan basis-prime]))
(Cartan? x)
(Cartan? ??)
(quote ([x]))
(ceiling a)
(ceiling ??)
(quote ([a]))
generic ceiling.
Returns the result of rounding a
up to the next largest integer.
Extensions beyond real numbers may behave differently; see the Documentation site for more detail.
generic ceiling. Returns the result of rounding `a` up to the next largest integer. Extensions beyond real numbers may behave differently; see the [Documentation site](https://cljdoc.org/d/org.mentat/emmy/CURRENT/doc/basics/generics) for more detail.
(chart coordinate-system)
(chart ??)
(quote ([coordinate-system]))
Given an [[ICoordinateSystem]], returns a function from a point on the
coordinate system's manifold to the coordinate representation specified by the
supplied coordinate-system
.
Given an [[ICoordinateSystem]], returns a function from a point on the coordinate system's manifold to the coordinate representation specified by the supplied `coordinate-system`.
(chinese-remainder & modints)
Accepts a sequence of [[ModInt]] instances (where the modulus
of
all [[ModInt]] instances are relatively prime), and returns a [[ModInt]] x
such that (residue input) == (mod x (modulus input))
.
For example:
(let [a1 (m/make 2 5)
a2 (m/make 3 13)]
[(= 42 (chinese-remainder a1 a2))
(= (residue a1) (mod cr (modulus a1)))
(= (residue a2) (mod cr (modulus a2)))])
;;=> [true true true]
[Chinese Remainder Algorithm](https://en.wikipedia.org/wiki/Chinese_remainder_theorem). Accepts a sequence of [[ModInt]] instances (where the `modulus` of all [[ModInt]] instances are relatively prime), and returns a [[ModInt]] `x` such that `(residue input) == (mod x (modulus input))`. For example: ```clojure (let [a1 (m/make 2 5) a2 (m/make 3 13)] [(= 42 (chinese-remainder a1 a2)) (= (residue a1) (mod cr (modulus a1))) (= (residue a2) (mod cr (modulus a2)))]) ;;=> [true true true] ```
(Christoffel->basis C)
(Christoffel->basis ??)
(quote ([C]))
(Christoffel->Cartan Christoffel)
(Christoffel->Cartan ??)
(quote ([Christoffel]))
(Christoffel->symbols C)
(Christoffel->symbols ??)
(quote ([C]))
(Christoffel? x)
(Christoffel? ??)
(quote ([x]))
(claim coords owner)
(claim ??)
(quote ([coords owner]))
Marks (via metadata) the supplied set of coords
as being owned by owner
. If
coords
already has an owner (that is not equal to owner
), throws.
Marks (via metadata) the supplied set of `coords` as being owned by `owner`. If `coords` already has an owner (that is not equal to `owner`), throws.
(column-matrix & xs)
Returns a column matrix populated by the supplied xs
. Variadic equivalent
to [[column*]].
Returns a column matrix populated by the supplied `xs`. Variadic equivalent to [[column*]].
(column-matrix->up m)
(column-matrix->up ??)
(quote ([m]))
Returns the single column from the supplied column matrix as an up
. Errors if
some other type is supplied.
Returns the single column from the supplied column matrix as an `up`. Errors if some other type is supplied.
(column-matrix->vector m)
(column-matrix->vector ??)
(quote ([m]))
Returns the single column from the supplied column matrix as a vector. Errors if some other type is supplied.
Returns the single column from the supplied column matrix as a vector. Errors if some other type is supplied.
(commutator o p)
(commutator ??)
(quote ([o p]))
(compare x y)
Comparator. Returns a negative number, zero, or a positive number when x is logically 'less than', 'equal to', or 'greater than' y. Same as Java x.compareTo(y) except it also works for nil, and compares numbers and collections in a type-independent manner. x must implement Comparable
Comparator. Returns a negative number, zero, or a positive number when x is logically 'less than', 'equal to', or 'greater than' y. Same as Java x.compareTo(y) except it also works for nil, and compares numbers and collections in a type-independent manner. x must implement Comparable
(compare ??)
(quote ([x y]))
Comparator. Clone of [[cljs.core/compare]] that works with the expanded Emmy numeric tower.
Returns a negative number, zero, or a positive number when x is logically 'less than', 'equal to', or 'greater than' y. Uses IComparable if available and google.array.defaultCompare for objects of the same type and special-cases nil to be less than any other object.
Comparator. Clone of [[cljs.core/compare]] that works with the expanded Emmy numeric tower. Returns a negative number, zero, or a positive number when x is logically 'less than', 'equal to', or 'greater than' y. Uses IComparable if available and google.array.defaultCompare for objects of the same type and special-cases nil to be less than any other object.
(compatible-shape s)
(compatible-shape ??)
(quote ([s]))
Returns a structure compatible for multiplication with s
down to a scalar,
with the slots filled with gensyms.
Returns a structure compatible for multiplication with `s` down to a scalar, with the slots filled with gensyms.
(compatible-zero s)
(compatible-zero ??)
(quote ([s]))
Returns a structure compatible for multiplication with s
down to 0.
Returns a structure compatible for multiplication with `s` down to 0.
(complex c)
(complex re im)
Returns a [[Complex]] number with the supplied real part re
and imaginary
part im
. im
defaults to 0.
Returns a [[Complex]] number with the supplied real part `re` and imaginary part `im`. `im` defaults to 0.
(complex? a)
(complex? ??)
(quote ([a]))
Returns true if a
is an instance of [[Complex]], false otherwise.
Returns true if `a` is an instance of [[Complex]], false otherwise.
(component & selectors)
Given a sequence of selectors
, return a function that accepts some object x
and returns:
(apply ref x selectors)
Given a sequence of `selectors`, return a function that accepts some object `x` and returns: ```clojure (apply ref x selectors) ```
(components->metric components basis)
(components->metric ??)
(quote ([components basis]))
(components->oneform-field components coordinate-system)
(components->oneform-field components coordinate-system name)
Takes:
down
tuple of components
of the one-form field relative to
coordinate-system
coordinate-system
And returns a full one-form field.
A one-field field is an operator that takes a vector field to a real-valued function on the manifold.
Takes: - a `down` tuple of `components` of the one-form field relative to `coordinate-system` - the `coordinate-system` And returns a full one-form field. A one-field field is an operator that takes a vector field to a real-valued function on the manifold.
(components->vector-field components coordinate-system)
(components->vector-field components coordinate-system name)
Takes:
up
tuple of the functions that each return the corresponding component
of the vector field relative coordinate-system
coordinate-system
And returns a vector field.
A vector field is an operator that takes a smooth real-valued function of manifold points and produces a NEW function that computes the directional derivative of the given function at each point of the manifold.
Takes: - an `up` tuple of the functions that each return the corresponding component of the vector field relative `coordinate-system` - the `coordinate-system` - optionally, a symbolic name for the vector field operator And returns a vector field. A vector field is an operator that takes a smooth real-valued function of manifold points and produces a NEW function that computes the directional derivative of the given function at each point of the manifold.
(compose & fns)
Arity-preserving version of clojure.core/comp
.
The arity of a composition is the arity of the rightmost (that is, first to be
applied) function term in fns
.
Arity-preserving version of `clojure.core/comp`. The arity of a composition is the arity of the rightmost (that is, first to be applied) function term in `fns`.
(compositional-canonical? C H)
(compositional-canonical? ??)
(quote ([C H]))
p.324
p.324
(conjugate a)
(conjugate ??)
(quote ([a]))
generic conjugate
generic conjugate
(constant-manifold-function c)
(constant-manifold-function ??)
(quote ([c]))
Takes some constant c
and returns a manifold function that maps every input
manifold point
to c.
Takes some constant `c` and returns a manifold function that maps every input manifold `point` to `c.`
(constant-series c)
(constant-series c kind)
Returns a [[PowerSeries]] representing the supplied constant term.
Optionally, pass kind
of either ::series
or ::power-series
to specify
the type of series returned.
Returns a [[PowerSeries]] representing the supplied constant term. Optionally, pass `kind` of either `::series` or `::power-series` to specify the type of series returned.
(contract f basis)
(contract ??)
(quote ([f basis]))
(coordinate local)
(coordinate ??)
(quote ([local]))
A convenience function on local tuples. A local tuple describes the state of a system at a particular time:
[t, q, D q, D^2 q]
representing time, position, velocity (and optionally acceleration etc.)
coordinate
returns the q
element, which is expected to be a mapping from
time to a structure of coordinates.
A convenience function on local tuples. A local tuple describes the state of a system at a particular time: ``` [t, q, D q, D^2 q] ``` representing time, position, velocity (and optionally acceleration etc.) [[coordinate]] returns the `q` element, which is expected to be a mapping from time to a structure of coordinates.
(coordinate-basis-oneform-field coordinate-system name & indices)
Given some coordinate-system
, a symbolic name
and a sequence of indices
into the structure of the coordinate system's representation, returns a
one-form field.
The returned one-form field at each structural spot takes a vector field and returns a function that takes the directional derivative in that coordinate's direction using the vector field.
Given some `coordinate-system`, a symbolic `name` and a sequence of indices into the structure of the coordinate system's representation, returns a one-form field. The returned one-form field at each structural spot takes a vector field and returns a function that takes the directional derivative in that coordinate's direction using the vector field.
(coordinate-basis-vector-field coordinate-system name & indices)
Given some coordinate-system
, a symbolic name
and a sequence of indices
into the structure of the coordinate system's representation,
returns a vector field that takes a function and returns a new function that
computes the partial derivative of that function with respect to the supplied
indices
into coordinate-system
.
To compute the full Jacobian, pass no indices.
Given some `coordinate-system`, a symbolic `name` and a sequence of indices into the structure of the coordinate system's representation, returns a vector field that takes a function and returns a new function that computes the partial derivative of that function with respect to the supplied `indices` into `coordinate-system`. To compute the full Jacobian, pass no indices.
(coordinate-basis? x)
(coordinate-basis? ??)
(quote ([x]))
Returns true if x
is a coordinate basis, false otherwise.
Returns true if `x` is a coordinate basis, false otherwise.
(coordinate-functions coordinate-system)
(coordinate-functions ??)
(quote ([coordinate-system]))
Returns a structure similar to the [[manifold/coordinate-prototype]] of
coordinate-system
, where every entry is a function from manifold point =>
the associated component of the point in the coordinate representation
described by coordinate-system
.
Returns a structure similar to the [[manifold/coordinate-prototype]] of `coordinate-system`, where every entry is a function from manifold point => the associated component of the point in the coordinate representation described by `coordinate-system`.
(coordinate-origin frame)
(coordinate-origin ??)
(quote ([frame]))
(coordinate-system->basis coordinate-system)
(coordinate-system->basis ??)
(quote ([coordinate-system]))
Returns the standard basis object for coordinate-system
.
Returns the standard basis object for `coordinate-system`.
(coordinate-system->inverse-metric coordinate-system)
(coordinate-system->inverse-metric ??)
(quote ([coordinate-system]))
(coordinate-system->metric coordinate-system)
(coordinate-system->metric ??)
(quote ([coordinate-system]))
(coordinate-system->metric-components coordsys)
(coordinate-system->metric-components ??)
(quote ([coordsys]))
(coordinate-system->oneform-basis coordinate-system)
(coordinate-system->oneform-basis ??)
(quote ([coordinate-system]))
Given some coordinate-system
, returns a structure of
coordinate-basis-oneform-field
instances.
The one-form field at each structural spot takes a vector field and returns a function that takes the directional derivative in that coordinate's direction using the vector field.
When applied as a function, the structure behaves equivalently to
(coordinate-basis-oneform-field <coordinate-system> 'ignored-name)
With no indices supplied.
Given some `coordinate-system`, returns a structure of `coordinate-basis-oneform-field` instances. The one-form field at each structural spot takes a vector field and returns a function that takes the directional derivative in that coordinate's direction using the vector field. When applied as a function, the structure behaves equivalently to ```clojure (coordinate-basis-oneform-field <coordinate-system> 'ignored-name) ``` With no indices supplied.
(coordinate-system->vector-basis coordinate-system)
(coordinate-system->vector-basis ??)
(quote ([coordinate-system]))
Given some coordinate-system
, returns a structure of
coordinate-basis-vector-field
instances. The vector field at each structural
spot takes a function and computes its directional derivative with respect to
that coordinate.
When applied as a function, the structure behaves equivalently to
(coordinate-basis-vector-field <coordinate-system> 'ignored-name)
With no indices supplied.
Given some `coordinate-system`, returns a structure of `coordinate-basis-vector-field` instances. The vector field at each structural spot takes a function and computes its directional derivative with respect to that coordinate. When applied as a function, the structure behaves equivalently to ```clojure (coordinate-basis-vector-field <coordinate-system> 'ignored-name) ``` With no indices supplied.
(coordinate-system-at manifold coordinate-system-name patch-name)
(coordinate-system-at ??)
(quote ([manifold coordinate-system-name patch-name]))
Returns an [[ICoordinateSystem]] instance specialized to the patch named
patch-name
on manifold
.
Returns an [[ICoordinateSystem]] instance specialized to the patch named `patch-name` on `manifold`.
(coordinate-system-names patch)
(coordinate-system-names ??)
(quote ([patch]))
Returns a set of names of all coordinate system constructors registered in the supplied patch.
Returns a set of names of all coordinate system constructors registered in the supplied patch.
(coordinate-system? x)
(coordinate-system? ??)
(quote ([x]))
Returns true if x
implements [[ICoordinateSystem]], false otherwise.
Returns true if `x` implements [[ICoordinateSystem]], false otherwise.
(coordinatize vf coordinate-system)
(coordinatize ??)
(quote ([vf coordinate-system]))
Returns an operator that acts as a coordinate version of the supplied vector
field vf
with respect to coordinate-system
.
The returned operator takes a function and returns a new function that takes
directional derivatives of coordinate representations of manifold points, with
respect to coordinate-system
.
Returns an operator that acts as a coordinate version of the supplied vector field `vf` with respect to `coordinate-system`. The returned operator takes a function and returns a new function that takes directional derivatives of coordinate representations of manifold points, with respect to `coordinate-system`.
(coords->event this coords)
(coords->event ??)
(quote ([this coords]))
Accepts a coordinate representation coords
of some event
and returns a
coordinate-free representation of the event.
coords
must be owned this this reference frame; coords->event
will throw
if not.
Accepts a coordinate representation `coords` of some `event` and returns a coordinate-free representation of the event. `coords` must be owned this this reference frame; [[coords->event]] will throw if not.
(corresponding-velocities coords)
(corresponding-velocities ??)
(quote ([coords]))
Takes a coordinate representation coords
of a manifold point with all
symbolic entries, and returns a structure of the same shape with v:
prepended to all symbols.
This structure is appropriate for representing the velocities associated with each coordinate.
Takes a coordinate representation `coords` of a manifold point with all symbolic entries, and returns a structure of the same shape with `v:` prepended to all symbols. This structure is appropriate for representing the velocities associated with each coordinate.
(cos a)
(cos ??)
(quote ([a]))
generic cos.
Returns the cosine of the
supplied argument a
.
generic cos. Returns the [cosine](https://en.wikipedia.org/wiki/Sine_and_cosine) of the supplied argument `a`.
(cosh a)
(cosh ??)
(quote ([a]))
generic cosh.
Computes the hyperbolic
cosine of the supplied
argument a
.
defaults to (e^x + e^{-x}) / 2
.
generic cosh. Computes the [hyperbolic cosine](https://mathworld.wolfram.com/HyperbolicCosine.html) of the supplied argument `a`. defaults to `(e^x + e^{-x}) / 2`.
(cot a)
(cot ??)
(quote ([a]))
generic cot.
Computes the trigonometric cotangent function of the supplied argument a
.
Equivalent to (invert (tan a))
, or (/ (cos a) (sin a))
.
generic cot. Computes the trigonometric cotangent function of the supplied argument `a`. Equivalent to `(invert (tan a))`, or `(/ (cos a) (sin a))`.
(coth a)
(coth ??)
(quote ([a]))
generic coth.
Computes the hyperbolic
cotangent of the supplied
argument a
.
defaults to cosh(x) / sinh(x)
.
generic coth. Computes the [hyperbolic cotangent](https://mathworld.wolfram.com/HyperbolicCotangent.html) of the supplied argument `a`. defaults to `cosh(x) / sinh(x)`.
(covariant-derivative Cartan)
(covariant-derivative Cartan map)
(covariant-differential Cartan)
(covariant-differential ??)
(quote ([Cartan]))
(cross-product a b)
(cross-product ??)
(quote ([a b]))
generic cross-product
generic cross-product
(csc a)
(csc ??)
(quote ([a]))
generic csc.
Computes the cosecant of the supplied argument a
.
Equivalent to (invert (sin a))
.
generic csc. Computes the cosecant of the supplied argument `a`. Equivalent to `(invert (sin a))`.
(csch a)
(csch ??)
(quote ([a]))
generic csch. Computes the [hyperbolic cosecant](https://mathworld.wolfram.com/HyperbolicCosecant.html) of the supplied argument `a`. defaults to `1 / sinh(x)`.
(cube a)
(cube ??)
(quote ([a]))
generic cube
generic cube
(curl metric orthonormal-basis)
(curl ??)
(quote ([metric orthonormal-basis]))
curl
implements equation (10.7) of Functional Differential Geometry,
defined on page 155.
[[curl]] implements equation (10.7) of Functional Differential Geometry, defined on page 155.
Operator that takes a function f
and returns a function that
calculates the Curl of f
at its input point.
f
must be a function from $\mathbb{R}^3 \to \mathbb{R}^3$.
Operator that takes a function `f` and returns a function that calculates the [Curl](https://en.wikipedia.org/wiki/Curl_(mathematics)) of `f` at its input point. `f` must be a function from $\mathbb{R}^3 \to \mathbb{R}^3$.
(curvature-components nabla coord-sys)
(curvature-components ??)
(quote ([nabla coord-sys]))
(D f)
(D ??)
(quote ([f]))
Derivative operator. Takes some function f
and returns a function whose value
at some point can multiply an increment in the arguments to produce the best
linear estimate of the increment in the function value.
For univariate functions, D
computes a derivative. For vector-valued
functions, D
computes
the Jacobian
of f
.
The related emmy.env/Grad
returns a function that produces a structure of
the opposite orientation as D
. Both of these functions use reverse-mode
automatic differentiation.
Derivative operator. Takes some function `f` and returns a function whose value at some point can multiply an increment in the arguments to produce the best linear estimate of the increment in the function value. For univariate functions, [[D]] computes a derivative. For vector-valued functions, [[D]] computes the [Jacobian](https://en.wikipedia.org/wiki/Jacobian_matrix_and_determinant) of `f`. The related [[emmy.env/Grad]] returns a function that produces a structure of the opposite orientation as [[D]]. Both of these functions use reverse-mode automatic differentiation.
(D-as-matrix F)
(D-as-matrix ??)
(quote ([F]))
(D-forward f)
(D-forward ??)
(quote ([f]))
Forward-mode derivative operator. Takes some function f
and returns a
function whose value at some point can multiply an increment in the arguments
to produce the best linear estimate of the increment in the function value.
For univariate functions, D-forward
computes a derivative. For vector-valued
functions, D-forward
computes
the Jacobian
of f
.
Forward-mode derivative operator. Takes some function `f` and returns a function whose value at some point can multiply an increment in the arguments to produce the best linear estimate of the increment in the function value. For univariate functions, [[D-forward]] computes a derivative. For vector-valued functions, [[D-forward]] computes the [Jacobian](https://en.wikipedia.org/wiki/Jacobian_matrix_and_determinant) of `f`.
(D-numeric f)
(D-numeric f opts)
Takes a function f: R => R
(function of a single real variable), and returns
a new function of x
that approximates the derivative $Df(x)$ (or $D^2f(x)$
if you pass :method :central-d2
).
Returns the estimated value of the derivative at x
. If you pass :info? true
, the fn returns a dictionary of the results of us/seq-limit
:
{:converged? <boolean>
:terms-checked <int>
:result <derivative estimate>}
Make sure to visit emmy.calculus.derivative/D
if you want symbolic or
automatic differentiation.
The returned function will attempt to estimate how many times it can halve the
step size used to estimate the derivative before roundoff error swamps the
calculation, and force the function to return (with :converged? false
, if
you pass :info?
)
D-numeric
takes optional args as its second param. Any of these can be
overridden by passing a second argument to the function returned by
D-numeric
; helpful for setting defaults and then overriding them later.
The returned function passes through these and any other options to
us/seq-limit
, where they control the sequence of richardson
extrapolation-accelerated estimates.
Options:
:method
: one of :central
, :central-d2
, :forward
or :backward
.
:central-d2
forces a second derivative estimate; the other methods configure
a first derivative estimator.
:info?
if false (default), returns the estimated value of x
. If true,
returns a dictionary with more information (see D-numeric
's docstring for
more info.)
:initial-h
: the initial h
to use for derivative estimates before $h o
0$. Defaults to 0.1 * abs(x)
.
:tolerance
: see us/stream-limit
for a discussion of how this value
handles relative vs absolute tolerance. $\sqrt(\epsilon)$ by default, where
$\epsilon$ = machine tolerance.
:maxterms
: the maximum number of terms to consider when hunting for a
derivative estimate. This defaults to an estimate generated internally,
designed to prevent roundoff error from swamping the result. If you want to
disable this feature, set :maxterms
to something moderately large, like
:maxterms 100
. But do so carefully! See the surrounding namespace for a
larger discussion.
Takes a function `f: R => R` (function of a single real variable), and returns a new function of `x` that approximates the derivative $Df(x)$ (or $D^2f(x)$ if you pass `:method :central-d2`). Returns the estimated value of the derivative at `x`. If you pass `:info? true`, the fn returns a dictionary of the results of `us/seq-limit`: ```clojure {:converged? <boolean> :terms-checked <int> :result <derivative estimate>} ``` Make sure to visit [[emmy.calculus.derivative/D]] if you want symbolic or automatic differentiation. ### Roundoff Estimate The returned function will attempt to estimate how many times it can halve the step size used to estimate the derivative before roundoff error swamps the calculation, and force the function to return (with `:converged? false`, if you pass `:info?`) ### Optional Arguments `D-numeric` takes optional args as its second param. Any of these can be overridden by passing a second argument to the function returned by `D-numeric`; helpful for setting defaults and then overriding them later. The returned function passes through these and any other options to `us/seq-limit`, where they control the sequence of richardson extrapolation-accelerated estimates. Options: - `:method`: one of `:central`, `:central-d2`, `:forward` or `:backward`. `:central-d2` forces a second derivative estimate; the other methods configure a first derivative estimator. - `:info?` if false (default), returns the estimated value of `x`. If true, returns a dictionary with more information (see `D-numeric`'s docstring for more info.) - `:initial-h`: the initial `h` to use for derivative estimates before $h o 0$. Defaults to `0.1 * abs(x)`. - `:tolerance`: see `us/stream-limit` for a discussion of how this value handles relative vs absolute tolerance. $\sqrt(\epsilon)$ by default, where $\epsilon$ = machine tolerance. - `:maxterms`: the maximum number of terms to consider when hunting for a derivative estimate. This defaults to an estimate generated internally, designed to prevent roundoff error from swamping the result. If you want to disable this feature, set `:maxterms` to something moderately large, like `:maxterms 100`. But do so carefully! See the surrounding namespace for a larger discussion.
(D-reverse f)
(D-reverse ??)
(quote ([f]))
Reverse-mode derivative operator. Takes some function f
and returns a
function whose value at some point can multiply an increment in the arguments
to produce the best linear estimate of the increment in the function value.
For univariate functions, D-reverse
computes a derivative. For vector-valued
functions, D-reverse
computes
the Jacobian
of f
.
Reverse-mode derivative operator. Takes some function `f` and returns a function whose value at some point can multiply an increment in the arguments to produce the best linear estimate of the increment in the function value. For univariate functions, [[D-reverse]] computes a derivative. For vector-valued functions, [[D-reverse]] computes the [Jacobian](https://en.wikipedia.org/wiki/Jacobian_matrix_and_determinant) of `f`.
(define-coordinates coordinate-prototype coordinate-system)
Given some coordinate-system
like R2-rect
and a coordinate-prototype
like
[x y]
or (up x y),
binds the following definitions into the namespace
where define-coordinates
is invoked:
R2-rect
binds to a new version of the coordinate system with its
coordinate-prototype
replaced by the supplied prototype
x
and y
bind to coordinate functions, i.e., functions from manifold point
to that particular coordinate
d:dx
and d:dy
bind to the corresponding vector field procedures
dx
and dy
bind to 1-forms for each coordinate.
Given some `coordinate-system` like `R2-rect` and a `coordinate-prototype` like `[x y]` or `(up x y), `binds the following definitions into the namespace where [[define-coordinates]] is invoked: - `R2-rect` binds to a new version of the coordinate system with its `coordinate-prototype` replaced by the supplied prototype - `x` and `y` bind to coordinate functions, i.e., functions from manifold point to that particular coordinate - `d:dx` and `d:dy` bind to the corresponding vector field procedures - `dx` and `dy` bind to 1-forms for each coordinate.
(definite-integral f a b)
(definite-integral f
a
b
{:keys [method compile? info?]
:or {method :open compile? false info? false}
:as opts})
Evaluates the definite integral of integrand f
across the interval $a, b$.
Optionally accepts a dictionary opts
of customizing options; All opts
will
be passed through to the supplied integrate
functions.
If you'd like more control, or to retrieve the integration function directly
without looking it up via :method
each time, see get-integrator
.
All supplied options are passed through to the underlying integrator; see the specific integrator for information on what options are available.
:method
: Specifies the integration method used. Must be
available-methods
:method
keyDefaults to :open
, which specifies an adaptive bulirsch-stoer quadrature method.
:compile?
If true, the generic function will be simplified and compiled
before execution.
:info?
If true, definite-integral
will return a map of integration
information returned by the underlying integrator. Else, returns an estimate
of the definite integral.
Evaluates the definite integral of integrand `f` across the interval $a, b$. Optionally accepts a dictionary `opts` of customizing options; All `opts` will be passed through to the supplied `integrate` functions. If you'd like more control, or to retrieve the integration function directly without looking it up via `:method` each time, see `get-integrator`. All supplied options are passed through to the underlying integrator; see the specific integrator for information on what options are available. ## Keyword arguments: `:method`: Specifies the integration method used. Must be - a keyword naming one of the available methods in `available-methods` - a function with the proper integrator signature - a dictionary of integrator options with a `:method` key Defaults to `:open`, which specifies an adaptive bulirsch-stoer quadrature method. `:compile?` If true, the generic function will be simplified and compiled before execution. `:info?` If true, `definite-integral` will return a map of integration information returned by the underlying integrator. Else, returns an estimate of the definite integral.
(derivative f)
(derivative ??)
(quote ([f]))
Returns a single-argument function of that, when called with an argument x
,
returns the derivative of f
at x
using forward-mode automatic
differentiation.
For numerical differentiation,
see emmy.numerical.derivative/D-numeric
.
f
must be built out of generic operations that know how to handle [[Dual]]
inputs in addition to any types that a normal (f x)
call would present. This
restriction does not apply to operations like putting x
into a container
or destructuring; just primitive function calls.
Returns a single-argument function of that, when called with an argument `x`, returns the derivative of `f` at `x` using forward-mode automatic differentiation. For numerical differentiation, see [[emmy.numerical.derivative/D-numeric]]. `f` must be built out of generic operations that know how to handle [[Dual]] inputs in addition to any types that a normal `(f x)` call would present. This restriction does _not_ apply to operations like putting `x` into a container or destructuring; just primitive function calls.
(determinant a)
(determinant ??)
(quote ([a]))
generic determinant
generic determinant
Alias for differential-of-map
.
Alias for [[differential-of-map]].
(differential-of-map mu:N->M)
(differential-of-map ??)
(quote ([mu:N->M]))
Defined on FDG p.72.
Defined on FDG p.72.
(dimension a)
(dimension ??)
(quote ([a]))
generic dimension
generic dimension
Operator that takes a function f
and returns a function that
calculates the Divergence of
f
at its input point.
The divergence is a one-level contraction of the gradient.
Operator that takes a function `f` and returns a function that calculates the [Divergence](https://en.wikipedia.org/wiki/Divergence) of `f` at its input point. The divergence is a one-level contraction of the gradient.
(divergence Cartan)
(divergence metric orthonormal-basis)
Both arities of divergence
are defined on page 156 of Functional Differential Geometry.
Both arities of [[divergence]] are defined on page 156 of Functional Differential Geometry.
(dot-product a b)
(dot-product ??)
(quote ([a b]))
generic dot-product
generic dot-product
(down & xs)
Construct a down (covariant) tuple from the arguments. Variadic version of [[down*]].
Construct a down (covariant) tuple from the arguments. Variadic version of [[down*]].
(down->row-matrix v)
(down->row-matrix ??)
(quote ([v]))
Returns a row matrix with the contents of the supplied down
structure.
Errors if any other type is provided.
Returns a row matrix with the contents of the supplied `down` structure. Errors if any other type is provided.
(drop2 metric-tensor basis)
(drop2 ??)
(quote ([metric-tensor basis]))
For making a (2,0) tensor into a (0,2) tensor.
For making a (2,0) tensor into a (0,2) tensor.
Alias for compatible-zero
.
Alias for [[compatible-zero]].
(elliptic-f phi k)
(elliptic-f ??)
(quote ([phi k]))
Legendre elliptic integral of the first kind F(φ, k). See W.H. Press, Numerical Recipes in C++, 2ed. eq. 6.11.19
See page 260.
Legendre elliptic integral of the first kind F(φ, k). See W.H. Press, Numerical Recipes in C++, 2ed. eq. 6.11.19 See [page 260](http://phys.uri.edu/nigh/NumRec/bookfpdf/f6-11.pdf).
The mathematical constant e, sometimes known as Euler's Number.
The mathematical constant [e](https://en.wikipedia.org/wiki/E_(mathematical_constant)), sometimes known as Euler's Number.
(Euler->M [theta phi psi])
(Euler->M ??)
(quote ([[theta phi psi]]))
Compute the rotation matrix from a 3-vector of Euler angles.
Our Euler Angle convention:
M(theta, phi, psi) = R_z(phi)*R_x(theta)*R_z(psi)
Compute the rotation matrix from a 3-vector of Euler angles. Our Euler Angle convention: M(theta, phi, psi) = R_z(phi)*R_x(theta)*R_z(psi)
The mathematical constant known as the Euler–Mascheroni constant and sometimes as Euler's constant.
The mathematical constant known as the [Euler–Mascheroni constant](https://en.wikipedia.org/wiki/Euler%E2%80%93Mascheroni_constant) and sometimes as Euler's constant.
(Euler-Lagrange-operator L)
(Euler-Lagrange-operator ??)
(quote ([L]))
(event->coords this event)
(event->coords ??)
(quote ([this event]))
Accepts a reference frame and an event
, and returns this reference
frame's coordinate representation of the supplied event
.
Accepts a reference frame and an `event`, and returns this reference frame's coordinate representation of the supplied `event`.
(event? e)
(event? ??)
(quote ([e]))
Returns true if e
is an event, false otherwise.
Make new events with make-event
.
Returns true if `e` is an event, false otherwise. Make new events with [[make-event]].
(evolution order)
(evolution ??)
(quote ([order]))
We can use the coordinatized vector field to build an evolution along an integral curve.
NOTE: I don't see how this has anything to do with coordinatize
!
We can use the coordinatized vector field to build an evolution along an integral curve. NOTE: I don't see how this has anything to do with [[coordinatize]]!
(evolve state-derivative & state-derivative-args)
evolve takes a state derivative function constructor and its arguments, and returns an integrator via make-integrator.
In particular, the returned function accepts a callback function which will be invoked at intermediate grid points of the integration.
evolve takes a state derivative function constructor and its arguments, and returns an integrator via make-integrator. In particular, the returned function accepts a callback function which will be invoked at intermediate grid points of the integration.
(exact-divide a b)
(exact-divide ??)
(quote ([a b]))
generic exact-divide.
Similar to the binary case of /
, but throws if (g/exact? <result>)
returns false.
generic exact-divide. Similar to the binary case of [[/]], but throws if `(g/exact? <result>)` returns false.
(exact? a)
(exact? ??)
(quote ([a]))
generic exact?.
Entries that are exact are available for gcd
, among other operations.
generic exact?. Entries that are exact are available for `gcd`, among other operations.
(exp a)
(exp ??)
(quote ([a]))
generic exp.
Returns the base-e exponential of x
. Equivalent to (expt e x)
, given
some properly-defined e
symbol.
generic exp. Returns the base-e exponential of `x`. Equivalent to `(expt e x)`, given some properly-defined `e` symbol.
(exp10 a)
(exp10 ??)
(quote ([a]))
generic exp10.
Returns the base-10 exponential of x
. Equivalent to (expt 10 x)
.
generic exp10. Returns the base-10 exponential of `x`. Equivalent to `(expt 10 x)`.
(exp2 a)
(exp2 ??)
(quote ([a]))
generic exp2.
Returns the base-2 exponential of x
. Equivalent to (expt 2 x)
.
generic exp2. Returns the base-2 exponential of `x`. Equivalent to `(expt 2 x)`.
(expression->stream expr stream)
(expression->stream expr stream options)
Renders an expression through the simplifier and onto the stream.
Renders an expression through the simplifier and onto the stream.
(expression->string expr)
(expression->string ??)
(quote ([expr]))
Returns a string representation of a frozen, simplified version of the supplied
expression expr
.
Returns a string representation of a frozen, simplified version of the supplied expression `expr`.
(expression-of expr)
(expression-of ??)
(quote ([expr]))
If the supplied argument is a [[Literal]] (or a symbol, interpreted elsewhere as a numerical literal expression), returns the wrapped expression (or the symbol).
Else, returns expr
.
If the supplied argument is a [[Literal]] (or a symbol, interpreted elsewhere as a numerical literal expression), returns the wrapped expression (or the symbol). Else, returns `expr`.
(expt a b)
(expt ??)
(quote ([a b]))
generic expt
generic expt
(extended-rotation R)
(extended-rotation ??)
(quote ([R]))
(F->C F)
(F->C ??)
(quote ([F]))
Accepts a coordinate transformation F
from a local tuple to a new coordinate
structure, and returns a function from local -> local
that applies the
transformation directly.
F->C
handles local tuples of arbitrary length.
Accepts a coordinate transformation `F` from a local tuple to a new coordinate structure, and returns a function from `local -> local` that applies the transformation directly. [[F->C]] handles local tuples of arbitrary length.
(factor expr)
(factor ??)
(quote ([expr]))
Accepts a single symbolic expression and returns a factored version of that expression.
Differs from [[factor-expression]] in that it can handle any expression, not just expressions limited to polynomial operations.
Accepts a single symbolic expression and returns a factored version of that expression. Differs from [[factor-expression]] in that it can handle any expression, not just expressions limited to polynomial operations.
(factorial n)
(factorial ??)
(quote ([n]))
Returns the factorial of n
, i.e., the product of 1 to n
(inclusive).
factorial
will return a platform-specific emmy.util/bigint
given
some n
that causes integer overflow.
Returns the factorial of `n`, i.e., the product of 1 to `n` (inclusive). [[factorial]] will return a platform-specific [[emmy.util/bigint]] given some `n` that causes integer overflow.
(ff:zero _)
(ff:zero ??)
(quote ([_]))
Returns a form field that returns, for any supplied vector field vf
, a
manifold function [[manifold/zero-manifold-function]] that maps every input
manifold point
to the scalar value 0.
Returns a form field that returns, for any supplied vector field `vf`, a manifold function [[manifold/zero-manifold-function]] that maps every input manifold `point` to the scalar value 0.
(find-path Lagrangian t0 q0 t1 q1 n & {:keys [observe]})
SICM p. 23. The optional parameter values is a callback which will report intermediate points of the minimization.
SICM p. 23. The optional parameter values is a callback which will report intermediate points of the minimization.
(floor a)
(floor ??)
(quote ([a]))
generic floor.
Returns the largest integer less than or equal to a
.
Extensions beyond real numbers may behave differently; see the Documentation site for more detail.
generic floor. Returns the largest integer less than or equal to `a`. Extensions beyond real numbers may behave differently; see the [Documentation site](https://cljdoc.org/d/org.mentat/emmy/CURRENT/doc/basics/generics) for more detail.
(form-field->form-field-over-map mu:N->M)
(form-field->form-field-over-map ??)
(quote ([mu:N->M]))
(form-field? ff)
(form-field? ??)
(quote ([ff]))
Returns true if the supplied f
is a form field operator, false otherwise.
Returns true if the supplied `f` is a form field operator, false otherwise.
(four-tuple->ct [ct])
(four-tuple->ct ??)
(quote ([[ct]]))
(four-tuple->space [_ x y z])
(four-tuple->space ??)
(quote ([[_ x y z]]))
(fractional-part a)
(fractional-part ??)
(quote ([a]))
generic fractional-part.
Returns the fractional part of the given value, defined as x - ⌊x⌋
.
For positive numbers, this is identical to (- a (integer-part a))
. For
negative a
, because floor
truncates toward negative infinity, you might
be surprised to find that fractional-part
returns the distance between a
and the next-lowest integer:
(= 0.6 (fractional-part -0.4))
generic fractional-part. Returns the fractional part of the given value, defined as `x - ⌊x⌋`. For positive numbers, this is identical to `(- a (integer-part a))`. For negative `a`, because [[floor]] truncates toward negative infinity, you might be surprised to find that [[fractional-part]] returns the distance between `a` and the next-lowest integer: ```clojure (= 0.6 (fractional-part -0.4)) ```
(frame-maker c->e e->c)
(frame-maker ??)
(quote ([c->e e->c]))
Takes:
c->e
, a function mapping coordinates to eventse->c
, a function mapping events to coordinatesand returns a function that takes:
and returns instance of [[IFrame]].
Both c->e
and e->c
must accept three arguments:
ancestor-frame
Takes: - `c->e`, a function mapping coordinates to events - `e->c`, a function mapping events to coordinates and returns a function that takes: - a symbolic name - an ancestor frame - a dictionary of params and returns instance of [[IFrame]]. Both `c->e` and `e->c` must accept three arguments: - `ancestor-frame` - the [[IFrame]] instance - a map of parameters supplied to the returned function (possibly empty!).
(frame-name _)
(frame-name ??)
(quote ([_]))
Returns the symbolic name of the suppplied frame.
Returns the symbolic name of the suppplied frame.
(frame-owner coords)
(frame-owner ??)
(quote ([coords]))
Returns the owning [[IFrame]] instance of the supplied coordinates coords
,
nil if there's no owner otherwise.
Returns the owning [[IFrame]] instance of the supplied coordinates `coords`, nil if there's no owner otherwise.
(frame-params _)
(frame-params ??)
(quote ([_]))
Returns the parameters registered with the supplied frame.
Returns the parameters registered with the supplied frame.
(frame? x)
(frame? ??)
(quote ([x]))
Returns true if x
implements [[IFrame]], false otherwise.
Returns true if `x` implements [[IFrame]], false otherwise.
(freeze a)
(freeze ??)
(quote ([a]))
generic freeze.
Freezing an expression means removing wrappers and other metadata from subexpressions, so that the result is basically a pure S-expression with the same structure as the input. Doing this will rob an expression of useful information for further computation; so this is intended to be done just before simplification and printing, to simplify those processes.
generic freeze. Freezing an expression means removing wrappers and other metadata from subexpressions, so that the result is basically a pure S-expression with the same structure as the input. Doing this will rob an expression of useful information for further computation; so this is intended to be done just before simplification and printing, to simplify those processes.
(function->oneform-field f)
(function->oneform-field ??)
(quote ([f]))
One of the two incompatible definitions of differential.
This differential is a special case of exterior derivative. The other one lives at [[map/differential]].
One of the two incompatible definitions of differential. This differential is a special case of exterior derivative. The other one lives at [[map/differential]].
(Gamma q)
(Gamma q n)
Gamma takes a path function (from time to coordinates) to a state function (from time to local tuple).
Gamma takes a path function (from time to coordinates) to a state function (from time to local tuple).
(Gamma-bar f)
(Gamma-bar ??)
(quote ([f]))
(gcd a b)
(gcd ??)
(quote ([a b]))
generic gcd.
Returns the greatest common
divisor of the two
inputs a
and b
.
generic gcd. Returns the [greatest common divisor](https://en.wikipedia.org/wiki/Greatest_common_divisor) of the two inputs `a` and `b`.
(general-boost beta)
(general-boost ??)
(quote ([beta]))
(general-boost2 direction v:c)
(general-boost2 ??)
(quote ([direction v:c]))
Takes a unit 3-vector direction
(representing a direction) and a velocity
v:c
normalized by C
.
Takes a unit 3-vector `direction` (representing a direction) and a velocity `v:c` normalized by `C`.
(generalized-LE Lagrangian)
(generalized-LE ??)
(quote ([Lagrangian]))
(geodesic-equation source-coordsys target-coordsys Cartan-on-target)
(geodesic-equation ??)
(quote ([source-coordsys target-coordsys Cartan-on-target]))
(golden-section-max f xa xb)
(golden-section-max f xa xb opts)
For convenience, we also provide the sister-procedure for finding the maximum of a unimodal function using the golden section method.
Negate the function, minimize, negate the result.
For convenience, we also provide the sister-procedure for finding the maximum of a unimodal function using the golden section method. Negate the function, minimize, negate the result.
(golden-section-min f xa xb)
(golden-section-min f
xa
xb
{:keys [choose callback]
:or {choose best-of callback (constantly nil)}
:as opts})
Golden Section search attempts to locate the minimum of the supplied function
f
by evaluating points located at golden-ratioed intervals between the two
starting endpoints a
and b
. This method is slow, steady and reliable.
Supports the following optional keyword arguments:
:converged?
is an optional predicate accepting five arguments:
[a fa]
[l fl]
[r fr]
[b fb]
current-iteration
If the supplied fn
returns true, it will signal convergence and the
optimizer will return. Returning false will continue.
:choose
is called at the final step of optimization with all 4 points and
their fn values (see the first four arguments to :converged?
), and returns
the final choice.
:callback
receives all 5 arguments on every iteration.
:maxiter
Maximum number of iterations allowed for the minimizer. Defaults to
1000.
:maxfun
Maximum number of times the function can be evaluated before exiting.
Defaults to 1000.
:fn-tolerance
check that the minimal value of any of the checked points is
within the maximum of f(a) or f(b).
:arg-tolerance
check that a
and b
are within this supplied absolute
distance.
Golden Section search attempts to locate the minimum of the supplied function `f` by evaluating points located at golden-ratioed intervals between the two starting endpoints `a` and `b`. This method is slow, steady and reliable. Supports the following optional keyword arguments: `:converged?` is an optional predicate accepting five arguments: - `[a fa]` - `[l fl]` - `[r fr]` - `[b fb]` - `current-iteration` If the supplied `fn` returns true, it will signal convergence and the optimizer will return. Returning false will continue. `:choose` is called at the final step of optimization with all 4 points and their fn values (see the first four arguments to `:converged?`), and returns the final choice. `:callback` receives all 5 arguments on every iteration. `:maxiter` Maximum number of iterations allowed for the minimizer. Defaults to 1000. `:maxfun` Maximum number of times the function can be evaluated before exiting. Defaults to 1000. `:fn-tolerance` check that the minimal value of any of the checked points is within the maximum of f(a) or f(b). `:arg-tolerance` check that `a` and `b` are within this supplied absolute distance.
Operator that takes a function f
and returns a new function that
calculates the Gradient of f
.
The related emmy.env/D
operator returns a function that produces a
structure of the opposite orientation as Grad
. Both of these functions use
reverse-mode automatic differentiation.
Operator that takes a function `f` and returns a new function that calculates the [Gradient](https://en.wikipedia.org/wiki/Gradient) of `f`. The related [[emmy.env/D]] operator returns a function that produces a structure of the opposite orientation as [[Grad]]. Both of these functions use reverse-mode automatic differentiation.
(gradient metric basis)
(gradient ??)
(quote ([metric basis]))
gradient
implements equation (10.3) in Functional Differential Geometry,
defined on page 154.
[[gradient]] implements equation (10.3) in Functional Differential Geometry, defined on page 154.
(Gram-Schmidt vector-basis metric)
(Gram-Schmidt ??)
(quote ([vector-basis metric]))
(Hamilton-equations Hamiltonian)
(Hamilton-equations ??)
(quote ([Hamiltonian]))
(Hamiltonian n)
(Hamiltonian ??)
(quote ([n]))
Returns function signature for a Hamiltonian with n degrees of freedom (or an unrestricted number if n is not given).
Useful for constructing Hamiltonian literal functions.
Returns function signature for a Hamiltonian with n degrees of freedom (or an unrestricted number if n is not given). Useful for constructing Hamiltonian literal functions.
(Hamiltonian->state-derivative H)
(Hamiltonian->state-derivative ??)
(quote ([H]))
(Hodge-star metric spec & {:keys [orthonormalize?] :or {orthonormalize? false}})
Takes a metric
and a spec
and returns the Hodge star
operator (actually just a
function, but I suspect this should be a proper operator!)
spec
may be:
if the spec is a basis that needs to be orthonormalized, the optional
:orthonormalize?
keyword argument must be a coordinate system.
Takes a `metric` and a `spec` and returns the [Hodge star operator](https://en.wikipedia.org/wiki/Hodge_star_operator) (actually just a function, but I suspect this should be a proper operator!) `spec` may be: - a coordinate system with an orthonormal basis - an orthonormal basis - a basis if the spec is a basis that needs to be orthonormalized, the optional `:orthonormalize?` keyword argument must be a coordinate system.
Identity function. Returns its argument.
Identity function. Returns its argument.
(i:contract T u d n)
(i:contract ??)
(quote ([T u d n]))
(i:outer-product T1 T2)
(i:outer-product ??)
(quote ([T1 T2]))
(identity-like a)
(identity-like ??)
(quote ([a]))
generic identity-like.
Like one-like
but works for square matrices.
generic identity-like. Like `one-like` but works for square matrices.
(identity? a)
(identity? ??)
(quote ([a]))
generic identity?.
Like one?
, but this is true of square identity matrices as well.
No matrix is considered one?
because its function as a multiplicative
identity depends on the shape of the other multiplicand.
generic identity?. Like `one?`, but this is true of square identity matrices as well. No matrix is considered `one?` because its function as a multiplicative identity depends on the shape of the other multiplicand.
(imag-part a)
(imag-part ??)
(quote ([a]))
generic imag-part
generic imag-part
(index-types f)
(index-types ??)
(quote ([f]))
Given an operator or function f
, returns its registered vector of index
types, or []
if none exist.
index types are, for example,
['up 'down 'down]
for a Christoffel-2
, which takes one oneform field and two vector fields.
Given an operator or function `f`, returns its registered vector of index types, or `[]` if none exist. index types are, for example, ```clojure ['up 'down 'down] ``` for a `Christoffel-2`, which takes one oneform field and two vector fields.
(indexed->typed indexed basis)
(indexed->typed ??)
(quote ([indexed basis]))
(infinite? a)
(infinite? ??)
(quote ([a]))
generic infinite?.
Returns true if a
is either numerically infinite (i.e., equal to ##Inf
) or
a compound number (complex or quaterion, for example) with some infinite
component.
generic infinite?. Returns true if `a` is either numerically infinite (i.e., equal to `##Inf`) or a compound number (complex or quaterion, for example) with some infinite component.
(inner-product a b)
(inner-product ??)
(quote ([a b]))
generic inner-product
generic inner-product
(integer-part a)
(integer-part ??)
(quote ([a]))
generic integer-part.
Returns the integer part of a
by removing any fractional digits.
generic integer-part. Returns the integer part of `a` by removing any fractional digits.
(integrate-state-derivative state-derivative
state-derivative-args
initial-state
t1
dt)
(integrate-state-derivative ??)
(quote ([state-derivative state-derivative-args initial-state t1 dt]))
A wrapper for evolve, which is more convenient when you just want a vector of (time, state) pairs over the integration interval instead of having to deal with a callback. Integrates the supplied state derivative (and its argument package) from [0 to t1] in steps of size dt
A wrapper for evolve, which is more convenient when you just want a vector of (time, state) pairs over the integration interval instead of having to deal with a callback. Integrates the supplied state derivative (and its argument package) from [0 to t1] in steps of size dt
(interior-product X)
(interior-product ??)
(quote ([X]))
(invert a)
(invert ??)
(quote ([a]))
generic invert.
Returns the multiplicative inverse of a
.
Equivalent to (/ 1 a)
.
generic invert. Returns the multiplicative inverse of `a`. Equivalent to `(/ 1 a)`.
(iterated-map f n)
(iterated-map ??)
(quote ([f n]))
f is a function of (x y continue fail), which calls continue with the values of x' y' that follow x y in the mapping.
Returns a map of the same shape that iterates the iterated map n times before invoking the continuation, or invokes the fail continuation if the inner map fails.
f is a function of (x y continue fail), which calls continue with the values of x' y' that follow x y in the mapping. Returns a map of the same shape that iterates the iterated map n times before invoking the continuation, or invokes the fail continuation if the inner map fails.
(Jacobian to-basis from-basis)
(Jacobian ??)
(quote ([to-basis from-basis]))
Returns the Jacobian of transition from from-basis
to to-basis
.
The Jacobian is a structure of manifold functions. The outer index is the
from-basis index, so this structure can be multiplied by tuple of component
functions of a vector field relative to from-basis
to get component
functions for a vector field in to-basis
.
Returns the Jacobian of transition from `from-basis` to `to-basis`. The Jacobian is a structure of manifold functions. The outer index is the from-basis index, so this structure can be multiplied by tuple of component functions of a vector field relative to `from-basis` to get component functions for a vector field in `to-basis`.
(kind-predicate x)
(kind-predicate ??)
(quote ([x]))
Returns a predicate that returns true if its argument matches the supplied
kind-keyword k
, false otherwise.
Returns a predicate that returns true if its argument matches the supplied kind-keyword `k`, false otherwise.
(Lagrange-equations L)
(Lagrange-equations L dissipation-fn)
(Lagrange-equations-first-order L)
(Lagrange-equations-first-order ??)
(quote ([L]))
(Lagrange-interpolation-function ys xs)
(Lagrange-interpolation-function ??)
(quote ([ys xs]))
Given ys
(a sequence of function values) and xs
(an equal-length sequence
of function inputs), returns a [[emmy.polynomial/Polynomial]] instance
guaranteed to pass through all supplied xs
and ys
.
The contract for inputs is that (map vector xs ys)
should return a sequence
of pairs of points.
Given `ys` (a sequence of function values) and `xs` (an equal-length sequence of function inputs), returns a [[emmy.polynomial/Polynomial]] instance guaranteed to pass through all supplied `xs` and `ys`. The contract for inputs is that `(map vector xs ys)` should return a sequence of pairs of points.
(Lagrangian->energy L)
(Lagrangian->energy ??)
(quote ([L]))
(Lagrangian->power-loss L)
(Lagrangian->power-loss ??)
(quote ([L]))
(Lagrangian->state-derivative L)
(Lagrangian->state-derivative L dissipation-fn)
Optionally takes a dissipation function.
Optionally takes a dissipation function.
(Lagrangian-action L q t1 t2)
(Lagrangian-action L q t1 t2 integration-opts)
Operator that takes a function f
and returns a function that calculates
the Vector
Laplacian of
f
at its input point.
Operator that takes a function `f` and returns a function that calculates the [Vector Laplacian](https://en.wikipedia.org/wiki/Laplace_operator#Vector_Laplacian) of `f` at its input point.
(Laplacian metric orthonormal-basis)
(Laplacian ??)
(quote ([metric orthonormal-basis]))
(lcm a b)
(lcm ??)
(quote ([a b]))
generic lcm.
Returns the least common
multiple of the two
inputs a
and b
.
generic lcm. Returns the [least common multiple](https://en.wikipedia.org/wiki/Least_common_multiple) of the two inputs `a` and `b`.
(let-coordinates bindings & body)
similar to a let
binding that holds pairs of
<coordinate-structure-prototype>, <coordinate-system>
And internally binds, for each pair: (take [x y]
and m/R2-rect
as
examples):
The coordinate system symbol R2-rect
to a new version of the coordinate
system with its coordinate-prototype
replaced by the one you supplied.
That's (up x y)
in this example.
the entries x
and y
to coordinate functions, i.e., functions from manifold
point to this particular coordinate
d:dx
and d:dy
vector field procedures (I'm fuzzy here!)
dx
and dy
1-forms for each coordinate (fuzzy here too!)
Example:
(let-coordinates [[x y] R2-rect
[r theta] R2-polar]
;; bindings:
;; R2-rect, x, y, d:dx, d:dy, dx, dy
;; R2-polar, r, theta, d:dr, d:dtheta, dr, dtheta
body...)
similar to a `let` binding that holds pairs of <coordinate-structure-prototype>, <coordinate-system> And internally binds, for each pair: (take `[x y]` and `m/R2-rect` as examples): - The coordinate system symbol `R2-rect` to a new version of the coordinate system with its `coordinate-prototype` replaced by the one you supplied. That's `(up x y)` in this example. - the entries `x` and `y` to coordinate functions, i.e., functions from manifold point to this particular coordinate - `d:dx` and `d:dy` vector field procedures (I'm fuzzy here!) - `dx` and `dy` 1-forms for each coordinate (fuzzy here too!) Example: ```clojure (let-coordinates [[x y] R2-rect [r theta] R2-polar] ;; bindings: ;; R2-rect, x, y, d:dx, d:dy, dx, dy ;; R2-polar, r, theta, d:dr, d:dtheta, dr, dtheta body...) ```
(Lie-D R)
(Lie-D ??)
(quote ([R]))
Takes a system derivative R
and returns a operator that takes a function F
of coordinatized state and performs the operation described below, from
ODE.scm in scmutils:
Let (sigma t)
be the state of a system at time t
. Let the
(first-order) system of differential equations governing the evolution of
this state be:
((D sigma) t) = (R (sigma t))
(D sigma) = (compose R sigma)
i.e. R
is a system derivative.
Let F
be any function of state, then a differential equation for the
evolution of F
, as it is dragged along the integral curve sigma is:
(D (compose F sigma)) = (* (compose (D F) sigma) (D sigma))
= (compose (* (D F) R) sigma)
Let's call this operation Lie-D
(the Lie derivative for coordinates).
Takes a system derivative `R` and returns a operator that takes a function `F` of coordinatized state and performs the operation described below, from ODE.scm in scmutils: Let `(sigma t)` be the state of a system at time `t`. Let the (first-order) system of differential equations governing the evolution of this state be: ```clojure ((D sigma) t) = (R (sigma t)) ``` ```clojure (D sigma) = (compose R sigma) ``` i.e. `R` is a system derivative. Let `F` be any function of state, then a differential equation for the evolution of `F`, as it is dragged along the integral curve sigma is: ```clojure (D (compose F sigma)) = (* (compose (D F) sigma) (D sigma)) = (compose (* (D F) R) sigma) ``` Let's call this operation `Lie-D` (the Lie derivative for coordinates).
(Lie-derivative a)
(Lie-derivative ??)
(quote ([a]))
generic Lie-derivative
generic Lie-derivative
(Lie-transform H t)
(Lie-transform ??)
(quote ([H t]))
p. 428, the Lie transform is just the time-advance operator using the Lie derivative (see Hamiltonian.scm).
p. 428, the Lie transform is just the time-advance operator using the Lie derivative (see Hamiltonian.scm).
(linear-interpolants x0 x1 n)
(linear-interpolants ??)
(quote ([x0 x1 n]))
(literal-Cartan name coordsys)
(literal-Cartan ??)
(quote ([name coordsys]))
(literal-Christoffel-1 name coordsys)
(literal-Christoffel-1 ??)
(quote ([name coordsys]))
(literal-Christoffel-2 name coordsys)
(literal-Christoffel-2 ??)
(quote ([name coordsys]))
(literal-down sym size)
(literal-down ??)
(quote ([sym size]))
Generates a down
structure of dimension size
populated by symbolic entries,
each prefixed by the supplied symbol sym
.
For example:
(= (literal-down 'x 3)
(down 'x_0 'x_1 'x_2))
Generates a `down` structure of dimension `size` populated by symbolic entries, each prefixed by the supplied symbol `sym`. For example: ```clojure (= (literal-down 'x 3) (down 'x_0 'x_1 'x_2)) ```
(literal-function f)
(literal-function f sicm-signature)
(literal-function f domain range)
(literal-Lagrangian-state n-dof)
(literal-Lagrangian-state ??)
(quote ([n-dof]))
(literal-manifold-function sym coordinate-system)
(literal-manifold-function ??)
(quote ([sym coordinate-system]))
Given a symbolic name sym
and an [[ICoordinateSystem]], returns a literal
function that maps coordinate-free manifold points to a scalar output.
Also aliased as literal-manifold-function
.
Given a symbolic name `sym` and an [[ICoordinateSystem]], returns a literal function that maps coordinate-free manifold points to a scalar output. Also aliased as [[literal-manifold-function]].
(literal-manifold-map name source target)
(literal-manifold-map ??)
(quote ([name source target]))
(literal-matrix sym nrows)
(literal-matrix sym nrows ncols)
Generates a nrows
x ncols
matrix of symbolic entries, each prefixed by the
supplied symbol sym
.
If ncols
(the third argument) is not supplied, returns a square matrix of
size nrows
x nrows
.
NOTE: The symbols in the returned matrix record their Einstein-notation path
into the structure that this matrix represents; a down
of up
columns. This
means that the returned indices embedded in the symbols look flipped, ji
vs
ij
.
For example:
(= (literal-matrix 'x 2 2)
(by-rows ['x_0↑0 'x_1↑0]
['x_0↑1 'x_1↑1]))
Generates a `nrows` x `ncols` matrix of symbolic entries, each prefixed by the supplied symbol `sym`. If `ncols` (the third argument) is not supplied, returns a square matrix of size `nrows` x `nrows`. NOTE: The symbols in the returned matrix record their Einstein-notation path into the structure that this matrix represents; a `down` of `up` columns. This means that the returned indices embedded in the symbols look flipped, `ji` vs `ij`. For example: ```clojure (= (literal-matrix 'x 2 2) (by-rows ['x_0↑0 'x_1↑0] ['x_0↑1 'x_1↑1])) ```
(literal-metric name coordinate-system)
(literal-metric ??)
(quote ([name coordinate-system]))
Flat coordinate systems here only.
Flat coordinate systems here only.
(literal-number x)
(literal-number ??)
(quote ([x]))
Returns its argument, wrapped in a marker type that responds to the generic
operations registered in emmy.numsymb
.
Symbols are automatically treated as literal-number
instances, so
(* 10 (literal-number 'x))
is equivalent to
(* 10 'x)
If you pass an actual number, emmy will attempt to preserve exact values through various operations:
(g/+ 1 (g/cos (g/* 2 (literal-number 4))))
;;=> (+ 1 (cos 8))
Notice that the (g/* 2 ...)
is evaluated, but cos
evaluation is deferred,
since the result is inexact. On the other hand, if the number is inexact to
begin with:
(g/+ 1 (g/cos (g/* 2 (literal-number 2.2))))
;;=> 0.6926671300215806
the system will go ahead and evaluate it.
Returns its argument, wrapped in a marker type that responds to the generic operations registered in [[emmy.numsymb]]. Symbols are automatically treated as [[literal-number]] instances, so ```clojure (* 10 (literal-number 'x)) ``` is equivalent to ```clojure (* 10 'x) ``` If you pass an actual number, emmy will attempt to preserve exact values through various operations: ```clojure (g/+ 1 (g/cos (g/* 2 (literal-number 4)))) ;;=> (+ 1 (cos 8)) ``` Notice that the `(g/* 2 ...)` is evaluated, but `cos` evaluation is deferred, since the result is inexact. On the other hand, if the number is inexact to begin with: ```clojure (g/+ 1 (g/cos (g/* 2 (literal-number 2.2)))) ;;=> 0.6926671300215806 ``` the system will go ahead and evaluate it.
(literal-oneform-field name coordinate-system)
(literal-oneform-field ??)
(quote ([name coordinate-system]))
Given a symbolic name sym
and a coordinate-system
, returns a one-form field
consisting of literal real-valued functions from the coordinate system's
dimension for each coordinate component.
These functions are passed to components->oneform-field
, along with the
supplied coordinate-system
and symbolic name sym
.
For coordinate systems of dimension 1, literal-form-field
's component
functions will accept a single non-structural argument.
Given a symbolic name `sym` and a `coordinate-system`, returns a one-form field consisting of literal real-valued functions from the coordinate system's dimension for each coordinate component. These functions are passed to [[components->oneform-field]], along with the supplied `coordinate-system` and symbolic name `sym`. For coordinate systems of dimension 1, `literal-form-field`'s component functions will accept a single non-structural argument.
(literal-up sym size)
(literal-up ??)
(quote ([sym size]))
Generates an up
structure of dimension size
populated by symbolic entries,
each prefixed by the supplied symbol sym
.
For example:
(= (literal-up 'x 3)
(up 'x↑0 'x↑1 'x↑2))
Generates an `up` structure of dimension `size` populated by symbolic entries, each prefixed by the supplied symbol `sym`. For example: ```clojure (= (literal-up 'x 3) (up 'x↑0 'x↑1 'x↑2)) ```
(literal-vector-field sym coordinate-system)
(literal-vector-field ??)
(quote ([sym coordinate-system]))
Given a symbolic name sym
and a coordinate-system
, returns a vector field
consisting of literal real-valued functions from the coordinate system's
dimension for each coordinate component.
These functions are passed to components->vector-field
, along with the
supplied coordinate-system
and symbolic name sym
.
For coordinate systems of dimension 1, literal-vector-field
's component
functions will accept a single non-structural argument.
Given a symbolic name `sym` and a `coordinate-system`, returns a vector field consisting of literal real-valued functions from the coordinate system's dimension for each coordinate component. These functions are passed to [[components->vector-field]], along with the supplied `coordinate-system` and symbolic name `sym`. For coordinate systems of dimension 1, `literal-vector-field`'s component functions will accept a single non-structural argument.
(log a)
(log ??)
(quote ([a]))
generic log.
Returns the natural logarithm of x
.
generic log. Returns the natural logarithm of `x`.
(log10 a)
(log10 ??)
(quote ([a]))
generic log10.
Returns the base-10 logarithm of x
, i.e., $log_10(x)$.
generic log10. Returns the base-10 logarithm of `x`, i.e., $log_10(x)$.
(log2 a)
(log2 ??)
(quote ([a]))
generic log2.
Returns the base-2 logarithm of x
, i.e., $log_2(x)$.
generic log2. Returns the base-2 logarithm of `x`, i.e., $log_2(x)$.
(lower metric)
(lower ??)
(quote ([metric]))
To make a vector field into a one-form field, i.e., a (1,0) tensor into a (0,1) tensor.
To make a vector field into a one-form field, i.e., a (1,0) tensor into a (0,1) tensor.
(m->s ls m rs)
(m->s ??)
(quote ([ls m rs]))
Convert the matrix m
into a structure S
, guided by the requirement that (* ls S rs)
should be a scalar.
Convert the matrix `m` into a structure `S`, guided by the requirement that `(* ls S rs)` should be a scalar.
(m:generate n f)
(m:generate r c f)
Returns a matrix with r
rows and c
columns, whose entries are generated by
the supplied function f
.
If you only supply one dimension n
the returned matrix will be square.
The entry in the i
th row and j
-th column is (f i j)
.
Returns a matrix with `r` rows and `c` columns, whose entries are generated by the supplied function `f`. If you only supply one dimension `n` the returned matrix will be square. The entry in the `i`th row and `j`-th column is `(f i j)`.
(magnitude a)
(magnitude ??)
(quote ([a]))
generic magnitude
generic magnitude
(make-basis vector-basis dual-basis)
(make-basis ??)
(quote ([vector-basis dual-basis]))
Make a basis object out of a vector and dual basis.
The dimensions of vector-basis
and dual-basis
must agree.
Make a basis object out of a vector and dual basis. The dimensions of `vector-basis` and `dual-basis` must agree.
(make-Cartan forms basis)
(make-Cartan ??)
(quote ([forms basis]))
(make-Christoffel symbols basis)
(make-Christoffel ??)
(quote ([symbols basis]))
Returns a data structure representing Christoffel symbols of the second kind.
Returns a data structure representing [Christoffel symbols of the second kind](https://en.wikipedia.org/wiki/Christoffel_symbols#Christoffel_symbols_of_the_second_kind_(symmetric_definition)).
(make-Christoffel-1 symbols basis)
(make-Christoffel-1 ??)
(quote ([symbols basis]))
Returns a data structure representing Christoffel symbols of the first kind.
Returns a data structure representing [Christoffel symbols of the first kind](https://en.wikipedia.org/wiki/Christoffel_symbols#Christoffel_symbols_of_the_first_kind).
(make-constant-vector-field basis m0)
(make-constant-vector-field ??)
(quote ([basis m0]))
(make-event e)
(make-event ??)
(quote ([e]))
Marks the input event e
as an event via its metadata. The return value will
return true
when passed to event?
.
Marks the input event `e` as an event via its metadata. The return value will return `true` when passed to [[event?]].
(make-four-tuple ct [x y z])
(make-four-tuple ??)
(quote ([ct [x y z]]))
(make-manifold family n)
(make-manifold family n embedding-dimension)
Returns a concrete manifold generated by specializing the supplied manifold
family
into a concrete manifold of dimension n
. n
must be a positive
integer.
Optionally takes an embedding-dimension
; this must be >= the value of n
.
Use this in cases like an n-sphere embedded in a euclidean space of dimension
n+1.
A manifold is a topological space that locally resembles Euclidean space near each point.
Returns a concrete manifold generated by specializing the supplied manifold `family` into a concrete manifold of dimension `n`. `n` must be a positive integer. Optionally takes an `embedding-dimension`; this must be >= the value of `n`. Use this in cases like an n-sphere embedded in a euclidean space of dimension n+1. A [manifold](https://en.wikipedia.org/wiki/Manifold) is a topological space that locally resembles Euclidean space near each point.
(make-polar a b)
(make-polar ??)
(quote ([a b]))
generic make-polar
generic make-polar
(make-rectangular a b)
(make-rectangular ??)
(quote ([a b]))
generic make-rectangular
generic make-rectangular
(make-SR-coordinates frame four-tuple)
(make-SR-coordinates ??)
(quote ([frame four-tuple]))
(make-SR-frame name ancestor-frame boost-direction v-over-c origin)
(make-SR-frame ??)
(quote ([name ancestor-frame boost-direction v-over-c origin]))
(manifold-family? m)
(manifold-family? ??)
(quote ([m]))
Returns true
if m
is a dictionary representing a manifold family, false
otherwise.
Returns `true` if `m` is a dictionary representing a manifold family, false otherwise.
(manifold-point? p)
(manifold-point? ??)
(quote ([p]))
Returns true if p
is a manifold point, false otherwise.
Returns true if `p` is a manifold point, false otherwise.
(manifold-type manifold)
(manifold-type ??)
(quote ([manifold]))
The supplied manifold m
locally resembles some vector space; this function
returns the field over which that vector space was specified.
The supplied manifold `m` locally resembles some vector space; this function returns the field over which that vector space was specified.
(manifold? m)
(manifold? ??)
(quote ([m]))
Returns true
if m
is a dictionary representing a manifold, false
otherwise.
Returns `true` if `m` is a dictionary representing a manifold, false otherwise.
(mapr f & structures)
Return a structure with the same shape as s but with f applied to each primitive (that is, not structural) component.
Return a structure with the same shape as s but with f applied to each primitive (that is, not structural) component.
(matrix-by-cols & cols)
Returns a matrix whose columns consist of the supplied sequence of cols
.
These all must be the same length.
Variadic equivalent to [[by-cols*]].
Returns a matrix whose columns consist of the supplied sequence of `cols`. These all must be the same length. Variadic equivalent to [[by-cols*]].
(matrix-by-rows & rows)
Returns a matrix whose rows consist of the supplied sequence of rows
. These
all must be the same length.
Variadic equivalent to [[by-rows*]].
Returns a matrix whose rows consist of the supplied sequence of `rows`. These all must be the same length. Variadic equivalent to [[by-rows*]].
(metric->Christoffel-1 metric basis)
(metric->Christoffel-1 ??)
(quote ([metric basis]))
(metric->Christoffel-2 metric basis)
(metric->Christoffel-2 ??)
(quote ([metric basis]))
(metric->components metric basis)
(metric->components ??)
(quote ([metric basis]))
(metric->connection-1 metric basis)
(metric->connection-1 ??)
(quote ([metric basis]))
(metric->connection-2 metric basis)
(metric->connection-2 ??)
(quote ([metric basis]))
(metric->inverse-components metric basis)
(metric->inverse-components ??)
(quote ([metric basis]))
Given a metric and a basis, computes the inverse metric.
Given a metric and a basis, computes the inverse metric.
(metric-over-map mu:N->M g-on-M)
(metric-over-map ??)
(quote ([mu:N->M g-on-M]))
(metric:invert metric basis)
(metric:invert ??)
(quote ([metric basis]))
(minimize f a b)
(minimize f a b observe)
Find the minimum of the function f: R -> R
in the interval [a, b]
.
If an observe
function is supplied, it will be invoked with the iteration
count and the values of x and f(x) at each search step.
Find the minimum of the function `f: R -> R` in the interval `[a, b]`. If an `observe` function is supplied, it will be invoked with the iteration count and the values of x and f(x) at each search step.
(modulo a b)
(modulo ??)
(quote ([a b]))
generic modulo.
Returns the result of the
mathematical Modulo
operation between a
and b
(using the Knuth definition listed).
The contract satisfied by modulo
is:
(= a (+ (* b (floor (/ a b)))
(modulo a b)))
For numbers, this differs from the contract offered by remainder
because (floor (/ a b))
rounds toward negative infinity, while
the quotient
operation in the contract for remainder
rounds toward 0.
The result will be either 0
or of the same sign as the divisor b
.
generic modulo. Returns the result of the mathematical [Modulo](https://en.wikipedia.org/wiki/Modulo_operation) operation between `a` and `b` (using the Knuth definition listed). The contract satisfied by [[modulo]] is: ```clojure (= a (+ (* b (floor (/ a b))) (modulo a b))) ``` For numbers, this differs from the contract offered by [[remainder]] because `(floor (/ a b))` rounds toward negative infinity, while the [[quotient]] operation in the contract for [[remainder]] rounds toward 0. The result will be either `0` or of the same sign as the divisor `b`.
(momentum H-state)
(momentum ??)
(quote ([H-state]))
Returns the momentum element of a local Hamiltonian state tuple (by convention, the third element).
Returns the momentum element of a local Hamiltonian state tuple (by convention, the third element).
(multidimensional-minimize func x0 & {:keys [info?] :as opts})
Entrypoint for multidimensional minimization routines.
See emmy.numerical.multimin.nelder-mead/nelder-mead
for the only
supported option.
Entrypoint for multidimensional minimization routines. See [[emmy.numerical.multimin.nelder-mead/nelder-mead]] for the only supported option.
(negate a)
(negate ??)
(quote ([a]))
generic negate.
Returns the negation of a
.
Equivalent to (- (g/zero-like a) a)
.
generic negate. Returns the negation of `a`. Equivalent to `(- (g/zero-like a) a)`.
(negative? a)
(negative? ??)
(quote ([a]))
generic negative?.
Returns true if the argument a
is less than (g/zero-like a)
,
false otherwise. The default implementation depends on a proper Comparable
implementation on the type.`
generic negative?. Returns true if the argument `a` is less than `(g/zero-like a)`, false otherwise. The default implementation depends on a proper Comparable implementation on the type.`
(nelder-mead func x0 {:keys [callback] :as opts})
(nelder-mead ??)
(quote ([func x0 {:keys [callback], :as opts}]))
Find the minimum of the function f: R^n -> R, given an initial point q ∈ R^n. Supports the following optional keyword arguments:
:callback
if supplied, the supplied fn will be invoked with iteration count,
the values of X and the value of f(X) at each intermediate point of
evaluation.
:info?
if true, wraps the result with evaluation information.
:adaptive?
if true, the Nelder-Mead parameters for contraction, expansion,
reflection and shrinking will be set adaptively, as functions of the number of
dimensions. If false they stay constant.
:alpha
sets the reflection coefficient used for each step of Nelder-Mead.
:beta
sets the expansion coefficient used for each step of Nelder-Mead.
:gamma
sets the contraction coefficient used for each step of Nelder-Mead.
:sigma
sets the shrink coefficient used for each step of Nelder-Mead.
:maxiter
Maximum number of iterations allowed for the minimizer. Defaults to
200*dimension.
:maxfun
Maximum number of times the function can be evaluated before exiting.
Defaults to 200*dimension.
:simplex-tolerance
When the absolute value of the max difference between the
best point and any point in the simplex falls below this tolerance, the
minimizer stops. Defaults to 1e-4.
:fn-tolerance
When the absolute value of the max difference between the best
point's function value and the fn value of any point in the simplex falls
below this tolerance, the minimizer stops. Defaults to 1e-4.
:zero-delta
controls the value to which 0 entries in the initial vector are
set during initial simplex generation. Defaults to 0.00025.
:nonzero-delta
factor by which entries in the initial vector are perturbed to
generate the initial simplex. Defaults to 0.05.
See Gao, F. and Han, L. Implementing the Nelder-Mead simplex algorithm with adaptive parameters. 2012. Computational Optimization and Applications. 51:1, pp. 259-277 I gratefully acknowledge the Python implementation in SciPy which I have imitated here.
Find the minimum of the function f: R^n -> R, given an initial point q ∈ R^n. Supports the following optional keyword arguments: `:callback` if supplied, the supplied fn will be invoked with iteration count, the values of X and the value of f(X) at each intermediate point of evaluation. `:info?` if true, wraps the result with evaluation information. `:adaptive?` if true, the Nelder-Mead parameters for contraction, expansion, reflection and shrinking will be set adaptively, as functions of the number of dimensions. If false they stay constant. `:alpha` sets the reflection coefficient used for each step of Nelder-Mead. `:beta` sets the expansion coefficient used for each step of Nelder-Mead. `:gamma` sets the contraction coefficient used for each step of Nelder-Mead. `:sigma` sets the shrink coefficient used for each step of Nelder-Mead. `:maxiter` Maximum number of iterations allowed for the minimizer. Defaults to 200*dimension. `:maxfun` Maximum number of times the function can be evaluated before exiting. Defaults to 200*dimension. `:simplex-tolerance` When the absolute value of the max difference between the best point and any point in the simplex falls below this tolerance, the minimizer stops. Defaults to 1e-4. `:fn-tolerance` When the absolute value of the max difference between the best point's function value and the fn value of any point in the simplex falls below this tolerance, the minimizer stops. Defaults to 1e-4. `:zero-delta` controls the value to which 0 entries in the initial vector are set during initial simplex generation. Defaults to 0.00025. `:nonzero-delta` factor by which entries in the initial vector are perturbed to generate the initial simplex. Defaults to 0.05. See Gao, F. and Han, L. Implementing the Nelder-Mead simplex algorithm with adaptive parameters. 2012. Computational Optimization and Applications. 51:1, pp. 259-277 I gratefully acknowledge the [Python implementation in SciPy](https://github.com/scipy/scipy/blob/589c9afe41774ee96ec121f1867361146add8276/scipy/optimize/optimize.py#L556:5) which I have imitated here.
(nform-field? f n)
(nform-field? ??)
(quote ([f n]))
Returns true if the supplied f
is an form field of rank
n, false otherwise.
A form-field of rank n is an operator that takes n vector fields to a real-valued function on the manifold.
Returns true if the supplied `f` is an [form field of rank n](https://en.wikipedia.org/wiki/Differential_form), false otherwise. A form-field of rank n is an operator that takes n vector fields to a real-valued function on the manifold.
(numerical? x)
(numerical? ??)
(quote ([x]))
Returns true if x
is a purely numerical value and should be considered for
numerical simplifications, such as $x * 1 == x$ or $x * 0 ==
0$.
numerical?
should return false
if x
has additional, non-numerical
structure that should be preserved.
Returns true if `x` is a purely numerical value and should be considered for numerical simplifications, such as $x * 1 == x$ or $x * 0 == 0$. [[numerical?]] should return `false` if `x` has additional, non-numerical structure that should be preserved.
(one-like a)
(one-like ??)
(quote ([a]))
generic one-like.
In general, this procedure returns the multiplicative identity of the type of its argument, if it exists. For numbers this is 1.
generic one-like. In general, this procedure returns the multiplicative identity of the type of its argument, if it exists. For numbers this is 1.
(one-manifold-function point)
(one-manifold-function ??)
(quote ([point]))
Manifold function that maps every input manifold point
to the scalar value 1.
Manifold function that maps every input manifold `point` to the scalar value 1.
(one? a)
(one? ??)
(quote ([a]))
generic one?.
Is true if x
is a multiplicative identity.
generic one?. Is true if `x` is a multiplicative identity.
(oneform-field->basis-components w vector-basis)
(oneform-field->basis-components ??)
(quote ([w vector-basis]))
Given a structure w
of and a vector field basis vector-basis
, returns a new
structure generated by applying the full vector basis to each element of w
.
Here's an example of how to use this function to round trip a structure of basis components:
(let [vb (vf/coordinate-system->vector-basis coordsys)
basis (coordinate-system->oneform-basis coordsys)
components (down d:dx d:dy)]
(= components
(-> components
(basis-components->oneform-field basis)
(oneform-field->basis-components vb))))
Given a structure `w` of and a vector field basis `vector-basis`, returns a new structure generated by applying the full vector basis to each element of `w`. Here's an example of how to use this function to round trip a structure of basis components: ```clojure (let [vb (vf/coordinate-system->vector-basis coordsys) basis (coordinate-system->oneform-basis coordsys) components (down d:dx d:dy)] (= components (-> components (basis-components->oneform-field basis) (oneform-field->basis-components vb)))) ```
(oneform-field->components form coordinate-system)
(oneform-field->components ??)
(quote ([form coordinate-system]))
Given a one-form field form
and a coordinate-system
, returns a function
from the coordinate representation of a manifold point to a coordinate
representation of the coordinatized components of the form field at that
point.
For example:
(let-coordinates [[x y] R2-rect]
(let [f (literal-oneform-field 'f R2-rect)]
((oneform-field->components f R2-rect)
(up 'x0 'y0))))
;;=> (down (f_0 (up x0 y0))
;; (f_1 (up x0 y0)))
Given a one-form field `form` and a `coordinate-system`, returns a function from the coordinate representation of a manifold point to a coordinate representation of the coordinatized components of the form field at that point. For example: ```clojure (let-coordinates [[x y] R2-rect] (let [f (literal-oneform-field 'f R2-rect)] ((oneform-field->components f R2-rect) (up 'x0 'y0)))) ;;=> (down (f_0 (up x0 y0)) ;; (f_1 (up x0 y0))) ```
Alias for raise
.
Alias for [[raise]].
(oneform-field? f)
(oneform-field? ??)
(quote ([f]))
Returns true if the supplied f
is
a One-form, false
otherwise.
A One-form takes a single vector field to a real-valued function on the manifold.
Returns true if the supplied `f` is a [One-form](https://en.wikipedia.org/wiki/One-form), false otherwise. A [One-form](https://en.wikipedia.org/wiki/One-form) takes a single vector field to a real-valued function on the manifold.
(orientation s)
(orientation ??)
(quote ([s]))
Returns the orientation of s
, either ::up
or ::down
. Defaults to ::up
,
even for non-structures.
Returns the orientation of `s`, either `::up` or `::down`. Defaults to `::up`, even for non-structures.
(orthonormalize basis metric coordinate-system)
(orthonormalize ??)
(quote ([basis metric coordinate-system]))
(osculating-path state0)
(osculating-path ??)
(quote ([state0]))
Given a state tuple (of finite length), reconstitutes the initial segment of the Taylor series corresponding to the state tuple data as a function of t.
Time is measured beginning at the point of time specified in the input state tuple.
Given a state tuple (of finite length), reconstitutes the initial segment of the Taylor series corresponding to the state tuple data as a function of t. Time is measured beginning at the point of time specified in the input state tuple.
(outer-product a b)
(outer-product ??)
(quote ([a b]))
generic outer-product
generic outer-product
(p->r tqv)
(p->r ??)
(quote ([tqv]))
SICM p. 47. Polar to rectangular coordinates of state.
SICM p. 47. Polar to rectangular coordinates of state.
(parallel-transport-equation source-coordsys target-coordsys Cartan-on-target)
(parallel-transport-equation ??)
(quote ([source-coordsys target-coordsys Cartan-on-target]))
(partial & selectors)
A shim. Dispatches to [[d/partial]] when all the arguments are integers; falls back to [[clojure.core/partial]] (partial function application) otherwise.
A shim. Dispatches to [[d/partial]] when all the arguments are integers; falls back to [[clojure.core/partial]] (partial function application) otherwise.
(partial-derivative a b)
(partial-derivative ??)
(quote ([a b]))
generic partial-derivative
generic partial-derivative
(partial-forward & selectors)
Returns an operator that, when applied to a function f
, produces a function
that uses forward-mode automatic differentiation to compute the partial
derivative of f
at the (zero-based) slot index provided via selectors
.
Returns an operator that, when applied to a function `f`, produces a function that uses forward-mode automatic differentiation to compute the partial derivative of `f` at the (zero-based) slot index provided via `selectors`.
(partial-reverse & selectors)
Returns an operator that, when applied to a function f
, produces a function
that uses reverse-mode automatic differentiation to compute the partial
derivative of f
at the (zero-based) slot index provided via selectors
.
Returns an operator that, when applied to a function `f`, produces a function that uses reverse-mode automatic differentiation to compute the partial derivative of `f` at the (zero-based) slot index provided via `selectors`.
(partial-sums s)
(partial-sums ??)
(quote ([s]))
Returns a series (of the same type as the input) of partial sums of the terms
in the supplied series s
.
Returns a series (of the same type as the input) of partial sums of the terms in the supplied series `s`.
(patch-names manifold)
(patch-names ??)
(quote ([manifold]))
Returns a set of patch names registered in the supplied manifold.
Returns a set of patch names registered in the supplied manifold.
Alias for Hamiltonian->state-derivative
, for compatibility with
1st edition of SICM.
Alias for [[Hamiltonian->state-derivative]], for compatibility with 1st edition of SICM.
The mathematical constant 𝜑, also known as the Golden Ratio.
The mathematical constant [𝜑](https://en.wikipedia.org/wiki/Golden_ratio), also known as the Golden Ratio.
The mathematical constant Pi.
The mathematical constant [Pi](https://en.wikipedia.org/wiki/Pi).
(point coordinate-system)
(point ??)
(quote ([coordinate-system]))
Given an [[ICoordinateSystem]], returns a function from coordinates in
coordinate-system
's repesentation to the matching point on the manifold
associated with coordinate-system
.
Given an [[ICoordinateSystem]], returns a function from coordinates in `coordinate-system`'s repesentation to the matching point on the manifold associated with `coordinate-system`.
(Poisson-bracket f g)
(Poisson-bracket ??)
(quote ([f g]))
(polar-canonical alpha)
(polar-canonical ??)
(quote ([alpha]))
p.327
p.327
(power-series & prefix)
Return a [[PowerSeries]] starting with the supplied values. The remainder of the series will be filled with the zero-value corresponding to the first of the given values.
If you have a sequence already, prefer [[power-series*]].
Return a [[PowerSeries]] starting with the supplied values. The remainder of the series will be filled with the zero-value corresponding to the first of the given values. If you have a sequence already, prefer [[power-series*]].
(principal-value cuthigh)
(principal-value ??)
(quote ([cuthigh]))
(print-expression expr)
(print-expression ??)
(quote ([expr]))
(proper-space-interval four-tuple)
(proper-space-interval ??)
(quote ([four-tuple]))
(proper-time-interval four-tuple)
(proper-time-interval ??)
(quote ([four-tuple]))
(pullback-form mu:N->M)
(pullback-form ??)
(quote ([mu:N->M]))
Returns a function which will pull a form back across a map (without needing its inverse)
Returns a function which will pull a form back across a map (without needing its inverse)
(pullback-function mu:N->M)
(pullback-function ??)
(quote ([mu:N->M]))
(pullback-vector-field mu:N->M mu-inverse:M->N)
(pullback-vector-field ??)
(quote ([mu:N->M mu-inverse:M->N]))
(pushforward-function mu-inverse:M->N)
(pushforward-function ??)
(quote ([mu-inverse:M->N]))
(pushforward-vector mu:N->M mu-inverse:M->N)
(pushforward-vector ??)
(quote ([mu:N->M mu-inverse:M->N]))
(qp-submatrix m)
(qp-submatrix ??)
(quote ([m]))
(quotient a b)
(quotient ??)
(quote ([a b]))
generic quotient
generic quotient
(r->s local)
(r->s ??)
(quote ([local]))
(raise metric basis)
(raise ??)
(quote ([metric basis]))
To make a one-form field into a vector field, i.e., a (0,1) tensor into a (1,0) tensor.
To make a one-form field into a vector field, i.e., a (0,1) tensor into a (1,0) tensor.
(raise2 metric-tensor basis)
(raise2 ??)
(quote ([metric-tensor basis]))
For making a (0,2) tensor into a (2,0) tensor.
For making a (0,2) tensor into a (2,0) tensor.
(rationalize x)
(rationalize n d)
Construct a ratio.
Construct a ratio.
(real-part a)
(real-part ??)
(quote ([a]))
generic real-part
generic real-part
(ref a)
(ref a & ks)
A shim so that ref can act like nth in SICM contexts, as clojure core ref elsewhere.
A shim so that ref can act like nth in SICM contexts, as clojure core ref elsewhere.
(remainder a b)
(remainder ??)
(quote ([a b]))
generic remainder.
Returns the remainder of dividing the dividend a
by divisor b
.
The contract satisfied by remainder
is:
(= a (+ (* b (quotient a b))
(remainder a b)))
For numbers, this differs from the contract offered by modulo
because quotient
rounds toward 0, while (floor (/ a b))
rounds toward
negative infinity.
The result will be either 0
or of the same sign as the dividend a
.
generic remainder. Returns the remainder of dividing the dividend `a` by divisor `b`. The contract satisfied by [[remainder]] is: ```clojure (= a (+ (* b (quotient a b)) (remainder a b))) ``` For numbers, this differs from the contract offered by [[modulo]] because [[quotient]] rounds toward 0, while `(floor (/ a b))` rounds toward negative infinity. The result will be either `0` or of the same sign as the dividend `a`.
(Ricci nabla basis)
(Ricci ??)
(quote ([nabla basis]))
(Riemann nabla)
(Riemann ??)
(quote ([nabla]))
(Riemann-curvature nabla)
(Riemann-curvature ??)
(quote ([nabla]))
(rotate-x-matrix α)
(rotate-x-matrix ??)
(quote ([α]))
Produce the matrix of a rotation of α radians about the x axis.
Produce the matrix of a rotation of α radians about the x axis.
(rotate-x-tuple α)
(rotate-x-tuple ??)
(quote ([α]))
(rotate-y-matrix α)
(rotate-y-matrix ??)
(quote ([α]))
Produce the matrix of a rotation of α radians about the y axis.
Produce the matrix of a rotation of α radians about the y axis.
(rotate-y-tuple α)
(rotate-y-tuple ??)
(quote ([α]))
(rotate-z-matrix α)
(rotate-z-matrix ??)
(quote ([α]))
Produce the matrix of a rotation of α radians about the z axis.
Produce the matrix of a rotation of α radians about the z axis.
(rotate-z-tuple α)
(rotate-z-tuple ??)
(quote ([α]))
(row-matrix & xs)
Returns a row matrix populated by the supplied xs
. Variadic equivalent
to [[row*]].
Returns a row matrix populated by the supplied `xs`. Variadic equivalent to [[row*]].
(row-matrix->down m)
(row-matrix->down ??)
(quote ([m]))
Returns the single row from the supplied row matrix as a down
. Errors if some
other type is supplied.
Returns the single row from the supplied row matrix as a `down`. Errors if some other type is supplied.
(row-matrix->vector m)
(row-matrix->vector ??)
(quote ([m]))
Returns the single row from the supplied row matrix as a vector. Errors if some other type is supplied.
Returns the single row from the supplied row matrix as a vector. Errors if some other type is supplied.
(Rx α)
(Rx ??)
(quote ([α]))
Returns a function which rotates a vector α radians about the x axis.
Returns a function which rotates a vector α radians about the x axis.
(Ry α)
(Ry ??)
(quote ([α]))
Returns a function which rotates a vector α radians about the y axis.
Returns a function which rotates a vector α radians about the y axis.
(Rz α)
(Rz ??)
(quote ([α]))
Returns a function which rotates a vector α radians about the z axis.
Returns a function which rotates a vector α radians about the z axis.
(s->m ms rs)
(s->m ls ms rs)
Convert the structure ms
, which would be a scalar if the (compatible)
multiplication (* ls ms rs)
were performed, to a matrix.
Convert the structure `ms`, which would be a scalar if the (compatible) multiplication `(* ls ms rs)` were performed, to a matrix.
(s->r local)
(s->r ??)
(quote ([local]))
SICM p. 83
SICM p. 83
Similar to the S2-spherical
coordinate system, with the north pole rotated
90 degrees and lying along the positive y axis.
Similar to the [[S2-spherical]] coordinate system, with the north pole rotated 90 degrees and lying along the positive y axis.
(s:generate dimension orientation f)
(s:generate ??)
(quote ([dimension orientation f]))
Generate a structure with the given orientation
whose elements are
(f i)
where i ranges from [0..dimension)
.
Generate a structure with the given `orientation` whose elements are (f i) where i ranges from `[0..dimension)`.
(sec a)
(sec ??)
(quote ([a]))
generic sec.
Computes the secant of the supplied argument a
.
Equivalent to (invert (cos a))
.
generic sec. Computes the secant of the supplied argument `a`. Equivalent to `(invert (cos a))`.
(sech a)
(sech ??)
(quote ([a]))
generic sech. Computes the [hyperbolic secant](https://mathworld.wolfram.com/HyperbolicSecant.html) of the supplied argument `a`. defaults to `1 / cosh(x)`.
(seq:pprint n xs)
(seq:pprint ??)
(quote ([n xs]))
Realizes, simplifies and pretty-prints n
elements from the supplied sequence
xs
.
Realizes, simplifies and pretty-prints `n` elements from the supplied sequence `xs`.
(seq:print n xs)
(seq:print ??)
(quote ([n xs]))
Realizes, simplifies and prints n
elements from the supplied sequence xs
.
Realizes, simplifies and prints `n` elements from the supplied sequence `xs`.
(series & prefix)
Return a [[Series]] starting with the supplied values. The remainder of the series will be filled with the zero-value corresponding to the first of the given values.
If you have a sequence already, prefer [[series*]].
Return a [[Series]] starting with the supplied values. The remainder of the series will be filled with the zero-value corresponding to the first of the given values. If you have a sequence already, prefer [[series*]].
(series:sum s n)
(series:sum ??)
(quote ([s n]))
Returns the sum of all elements in the input series s
up to order
n
(inclusive). For example:
(sum (series 1 1 1 1 1 1 1) 3)
;; => 4
NOTE that sum
sums the first n + 1
terms, since a series starts with an
order 0 term.
Returns the sum of all elements in the input series `s` up to order `n` (inclusive). For example: ```clojure (sum (series 1 1 1 1 1 1 1) 3) ;; => 4 ``` NOTE that [[sum]] sums the first `n + 1` terms, since a series starts with an order 0 term.
(sharpen metric basis m)
(sharpen ??)
(quote ([metric basis m]))
(simplify a)
(simplify ??)
(quote ([a]))
generic simplify
generic simplify
(sin a)
(sin ??)
(quote ([a]))
generic sin.
Returns the sine of the
supplied argument a
.
generic sin. Returns the [sine](https://en.wikipedia.org/wiki/Sine_and_cosine) of the supplied argument `a`.
(sinc a)
(sinc ??)
(quote ([a]))
generic sinc.
The unnormalized sinc function, equivalent to $\frac{\sin x}{x}$ but defined to be equal to 1 at $x = 0$.
generic sinc. The unnormalized [sinc function](https://en.wikipedia.org/wiki/Sinc_function), equivalent to $\frac{\sin x}{x}$ but defined to be equal to 1 at $x = 0$. ### References - [Wikipedia page](https://en.wikipedia.org/wiki/Sinc_function) - [Mathworld page on Sinc](https://mathworld.wolfram.com/SincFunction.html) - [Boost notes on [[sinc]] and [[sinch]]](https://www.boost.org/doc/libs/1_65_0/libs/math/doc/html/math_toolkit/sinc/sinc_overview.html)
(sinh a)
(sinh ??)
(quote ([a]))
generic sinh.
Computes the hyperbolic
sine of the supplied
argument a
.
defaults to (e^x - e^{-x}) / 2
.
generic sinh. Computes the [hyperbolic sine](https://mathworld.wolfram.com/HyperbolicSine.html) of the supplied argument `a`. defaults to `(e^x - e^{-x}) / 2`.
(sinhc a)
(sinhc ??)
(quote ([a]))
generic sinhc.
The sinhc function, equivalent to $\frac{\sinh x}{x}$ but defined to be equal to 1 at $x = 0$.
generic sinhc. The [sinhc function](https://en.wikipedia.org/wiki/Sinhc_function), equivalent to $\frac{\sinh x}{x}$ but defined to be equal to 1 at $x = 0$. ### References - [Wikipedia page](https://en.wikipedia.org/wiki/Sinhc_function) - [Mathworld page on Sinhc](https://mathworld.wolfram.com/SinhcFunction.html)
(solve-linear a b)
(solve-linear ??)
(quote ([a b]))
generic solve-linear.
For a given a
and b
, returns x
such that a*x = b
.
Seesolve-linear-right
for a similar function that solves for a = x*b
.
generic solve-linear. For a given `a` and `b`, returns `x` such that `a*x = b`. See[[solve-linear-right]] for a similar function that solves for `a = x*b`.
(solve-linear-left a b)
(solve-linear-left ??)
(quote ([a b]))
Alias for solve-linear
; present for compatibility with the original
scmutils
codebase.
NOTE: In scmutils
, solve-linear-left
and solve-linear
act identically in
all cases except matrices. solve-linear-left
only accepted a column
matrix (or up structure) in the b
position, while solve-linear
accepted
either a column or row (up or down structure).
In Emmy, both functions accept either type.
Alias for [[solve-linear]]; present for compatibility with the original `scmutils` codebase. NOTE: In `scmutils`, `solve-linear-left` and `solve-linear` act identically in all cases except matrices. `solve-linear-left` only accepted a column matrix (or up structure) in the `b` position, while `solve-linear` accepted either a column or row (up or down structure). In Emmy, both functions accept either type.
(solve-linear-right a b)
(solve-linear-right ??)
(quote ([a b]))
generic solve-linear-right.
For a given a
and b
, returns x
such that a = x*b
.
Seesolve-linear
for a similar function that solves for a*x = b
.
generic solve-linear-right. For a given `a` and `b`, returns `x` such that `a = x*b`. See[[solve-linear]] for a similar function that solves for `a*x = b`.
(sqrt a)
(sqrt ??)
(quote ([a]))
generic sqrt
generic sqrt
(square a)
(square ??)
(quote ([a]))
generic square
generic square
(SR-coordinates? coords)
(SR-coordinates? ??)
(quote ([coords]))
(SR-name coords)
(SR-name ??)
(quote ([coords]))
(standard-map K)
(standard-map ??)
(quote ([K]))
(state-advancer state-derivative & state-derivative-args)
state-advancer takes a state derivative function constructor followed by the arguments to construct it with. The state derivative function is constructed and an integrator is produced which takes:
as arguments. Optionally, supply an options map with these optional fields:
:compile?
: If true, the ODE solver will compile your state function.
:epsilon
: The maximum error tolerance allowed by the ODE solver, both
relative and absolute.
Returns the final state.
The state derivative is expected to map a structure to a structure of the same shape, and is required to have the time parameter as the first element.
state-advancer takes a state derivative function constructor followed by the arguments to construct it with. The state derivative function is constructed and an integrator is produced which takes: - initial state - target time as arguments. Optionally, supply an options map with these optional fields: `:compile?`: If true, the ODE solver will compile your state function. `:epsilon`: The maximum error tolerance allowed by the ODE solver, both relative and absolute. Returns the final state. The state derivative is expected to map a structure to a structure of the same shape, and is required to have the time parameter as the first element.
(structure->typed coeff-functions basis)
(structure->typed ??)
(quote ([coeff-functions basis]))
(structure->vector s)
(structure->vector ??)
(quote ([s]))
Return the structure s
in unoriented vector form.
Return the structure `s` in unoriented vector form.
(structure-constant e_i e_j e_k basis metric)
(structure-constant ??)
(quote ([e_i e_j e_k basis metric]))
(structure? s)
(structure? ??)
(quote ([s]))
Returns true
if s
is a structure, false otherwise. (Vectors are treated as
up structures.)
Returns `true` if `s` is a structure, false otherwise. (Vectors are treated as up structures.)
(submatrix x lowrow hirow lowcol hicol)
(submatrix ??)
(quote ([x lowrow hirow lowcol hicol]))
Returns the submatrix of the matrix (or matrix-like structure) s
generated by
taking
lowrow
-> hirow
(inclusive)lowcol
-> hicol
(inclusive)Returns the submatrix of the matrix (or matrix-like structure) `s` generated by taking - rows from `lowrow` -> `hirow` (inclusive) - columns from `lowcol` -> `hicol` (inclusive)
(sum xs)
(sum f low high)
Takes either:
xs
of numbersf
, an inclusive-lower bound low
and
exclusive-upper bound upper
And returns the result of aggregating either xs
or (map f (range low high))
using the fold dynamically bound to [[fold]].
Use binding
to substitute in a different fold:
(require '[emmy.algebra.fold :as af])
(binding [*fold* (af/join af/kahan af/min af/max)]
(sum inc 0 10))
;;=> [55.0 1 10]
Takes either: - a series `xs` of numbers - A transformation function `f`, an inclusive-lower bound `low` and exclusive-upper bound `upper` And returns the result of aggregating either `xs` or `(map f (range low high))` using the fold dynamically bound to [[*fold*]]. Use `binding` to substitute in a different fold: ```clj (require '[emmy.algebra.fold :as af]) (binding [*fold* (af/join af/kahan af/min af/max)] (sum inc 0 10)) ;;=> [55.0 1 10] ```
(sumr f & structures)
Given some function f
and any number of isomorphic structures
,
returns the sum of the results of applying f
to each associated set of
entries in each structure
.
Given some function `f` and any number of isomorphic `structures`, returns the sum of the results of applying `f` to each associated set of entries in each `structure`.
(symmetrize-Cartan Cartan)
(symmetrize-Cartan ??)
(quote ([Cartan]))
(symmetrize-Christoffel G)
(symmetrize-Christoffel ??)
(quote ([G]))
(symplectic-transform? C)
(symplectic-transform? ??)
(quote ([C]))
p. 334
p. 334
(symplectic-unit n)
(symplectic-unit ??)
(quote ([n]))
p. 334 (used, but not defined there)
p. 334 (used, but not defined there)
(tan a)
(tan ??)
(quote ([a]))
generic tan.
Computes the trigonometric tangent function of the supplied argument a
.
Equivalent to (/ (sin a) (cos a))
.
generic tan. Computes the trigonometric tangent function of the supplied argument `a`. Equivalent to `(/ (sin a) (cos a))`.
(tanc a)
(tanc ??)
(quote ([a]))
generic tanc.
tanc
is defined, by analogy with sinc
, to be equal to $\frac{\tan
x}{x}$ for nonzero $x$ and equal to 1 at $x = 0$.
generic tanc. `tanc` is defined, by analogy with [[sinc]], to be equal to $\frac{\tan x}{x}$ for nonzero $x$ and equal to 1 at $x = 0$. ### References - [Wikipedia page](https://en.wikipedia.org/wiki/Tanc_function) - [Mathworld page on Sinc](https://mathworld.wolfram.com/TancFunction.html)
(tanh a)
(tanh ??)
(quote ([a]))
generic tanh.
Computes the hyperbolic
tangent of the supplied
argument a
.
defaults to sinh(x) / cosh(x)
.
generic tanh. Computes the [hyperbolic tangent](https://mathworld.wolfram.com/HyperbolicTangent.html) of the supplied argument `a`. defaults to `sinh(x) / cosh(x)`.
(tanhc a)
(tanhc ??)
(quote ([a]))
generic tanhc.
The tanhc function, equivalent to $\frac{\tanh x}{x}$ but defined to be equal to 1 at $x = 0$.
generic tanhc. The [tanhc function](https://en.wikipedia.org/wiki/Tanhc_function), equivalent to $\frac{\tanh x}{x}$ but defined to be equal to 1 at $x = 0$. ### References - [Wikipedia page](https://en.wikipedia.org/wiki/Tanhc_function) - [Mathworld page on Tanhc](https://mathworld.wolfram.com/TanhcFunction.html)
The mathematical constant Tau, equal to $2\pi$.
The mathematical constant [Tau](https://en.wikipedia.org/wiki/Turn_(angle)#Tau_proposals), equal to $2\pi$.
(taylor-series f)
(taylor-series f & xs)
Given a differentiable function f
and any number of arguments xs
, returns
a [[emmy.series/PowerSeries]] representing the Taylor
series of the function f
expanded at xs
.
Calling taylor-series
with no arguments will return the Maclaurin
series
of f
, i.e., the Taylor series expansion at (= x 0)
.
Calling the returned power series with incremental argument dx
will produce
a [[emmy.series/Series]] representing the terms of the Taylor series of
f
expanded at x
and evaluated at x+dx
.
NOTE: Just like the D
operator, functions f
of multiple-arguments are
treated as a function of a single structural argument. If you pass multiple
arguments xs
, you'll have to manually wrap your multiple-argument dx
in
a emmy.structure/up
or a vector before passing it to the returned
power series.
NOTE: The typical definition of a Taylor series of f
expanded around some
point x
is
$$T(p) = f(x) + \frac{f'(x)}{1!}(p-x) + \frac{f''(x)}{2!} (p-x)^2 + \ldots,$$
where p
is the evaluation point. When (= p x)
, all derivatives of the
Taylor series expansion of f
will exactly match the derivatives of f
itself.
The Taylor series returned here (call it $T'$) is actually a function of dx
,
where
$$T'(dx) = T(x+dx) = f(x) + \frac{f'(x)}{1!}(dx) + \frac{f''(x)}{2!} (dx)^2 + \ldots.$$
Given a differentiable function `f` and any number of arguments `xs`, returns a [[emmy.series/PowerSeries]] representing the [Taylor series](https://en.wikipedia.org/wiki/Taylor_series) of the function `f` expanded at `xs`. Calling [[taylor-series]] with no arguments will return the [Maclaurin series](https://en.wikipedia.org/wiki/Taylor_series#List_of_Maclaurin_series_of_some_common_functions) of `f`, i.e., the Taylor series expansion at `(= x 0)`. Calling the returned power series with incremental argument `dx` will produce a [[emmy.series/Series]] representing the terms of the Taylor series of `f` expanded at `x` and evaluated at `x+dx`. NOTE: Just like the [[D]] operator, functions `f` of multiple-arguments are treated as a function of a single structural argument. If you pass multiple arguments `xs`, you'll have to manually wrap your multiple-argument `dx` in a [[emmy.structure/up]] or a vector before passing it to the returned power series. NOTE: The typical definition of a Taylor series of `f` expanded around some point `x` is $$T(p) = f(x) + \frac{f'(x)}{1!}(p-x) + \frac{f''(x)}{2!} (p-x)^2 + \ldots,$$ where `p` is the evaluation point. When `(= p x)`, all derivatives of the Taylor series expansion of `f` will exactly match the derivatives of `f` itself. The Taylor series returned here (call it $T'$) is actually a function of `dx`, where $$T'(dx) = T(x+dx) = f(x) + \frac{f'(x)}{1!}(dx) + \frac{f''(x)}{2!} (dx)^2 + \ldots.$$
(tex$ expr)
Returns a string containing a LaTeX representation of expr
, wrapped in single
$
to mark the string as an inline LaTeX form.
Returns a string containing a LaTeX representation of `expr`, wrapped in single `$` to mark the string as an inline LaTeX form.
(tex$$ expr)
Returns a string containing a LaTeX representation of expr
, wrapped in double
$$
to mark the string as a block LaTeX form.
Returns a string containing a LaTeX representation of `expr`, wrapped in double `$$` to mark the string as a block LaTeX form.
(time-independent-canonical? C)
(time-independent-canonical? ??)
(quote ([C]))
p.326
p.326
(torsion nabla)
(torsion ??)
(quote ([nabla]))
(torsion-vector nabla)
(torsion-vector ??)
(quote ([nabla]))
(trace a)
(trace ??)
(quote ([a]))
generic trace
generic trace
(trace2down metric-tensor basis)
(trace2down ??)
(quote ([metric-tensor basis]))
Computes the trace of a (0,2) tensor.
Computes the trace of a (0,2) tensor.
(trace2up metric-tensor basis)
(trace2up ??)
(quote ([metric-tensor basis]))
Computes the trace of a (2,0) tensor
Computes the trace of a (2,0) tensor
(transfer-point embedded embedding)
(transfer-point ??)
(quote ([embedded embedding]))
Returns a function that takes a single manifold point
embedded in the
manifold embedded
and transfers the point to the supplied embedding
manifold.
The embedding dimension must be the same for both manifolds.
NOTE that embedded
and embedding
can be either manifolds, or instances
of [[ICoordinateSystem]]. In the latter case embedded
and embedding
will
bind to the manifold associated with the supplied [[ICoordinateSystem]].
Returns a function that takes a single manifold `point` embedded in the manifold `embedded` and transfers the point to the supplied `embedding` manifold. The embedding dimension must be the same for both manifolds. NOTE that `embedded` and `embedding` can be either manifolds, or instances of [[ICoordinateSystem]]. In the latter case `embedded` and `embedding` will bind to the manifold associated with the supplied [[ICoordinateSystem]].
(transpose a)
(transpose ??)
(quote ([a]))
generic transpose
generic transpose
(typed->indexed f basis)
(typed->indexed ??)
(quote ([f basis]))
(typed->structure T basis)
(typed->structure ??)
(quote ([T basis]))
(typical-coords coordinate-system)
(typical-coords ??)
(quote ([coordinate-system]))
Given an [[ICoordinateSystem]], returns a structure that matches
the [[coordinate-prototype]] of coordinate-system
, with all unique,
gensym-ed entries.
Use typical-coords
if you require a unique symbolic coordinate
representation compatible with coordinate-system
.
See typical-point
for a coordinate-free version of this function.
Given an [[ICoordinateSystem]], returns a structure that matches the [[coordinate-prototype]] of `coordinate-system`, with all unique, gensym-ed entries. Use [[typical-coords]] if you require a unique symbolic coordinate representation compatible with `coordinate-system`. See [[typical-point]] for a coordinate-free version of this function.
(typical-point coordinate-system)
(typical-point ??)
(quote ([coordinate-system]))
Given an [[ICoordinateSystem]], returns a unique, symbolically-represented
point on the manifold associated with coordinate-system
.
See typical-coords
for a coordinate-based version of this function.
Given an [[ICoordinateSystem]], returns a unique, symbolically-represented point on the manifold associated with `coordinate-system`. See [[typical-coords]] for a coordinate-based version of this function.
(up & xs)
Construct an up (contravariant) tuple from the arguments.
Variadic version of [[up*]].
Construct an up (contravariant) tuple from the arguments. Variadic version of [[up*]].
(up->column-matrix v)
(up->column-matrix ??)
(quote ([v]))
Returns a column matrix with the contents of the supplied up
structure.
Errors if any other type is provided.
Returns a column matrix with the contents of the supplied `up` structure. Errors if any other type is provided.
(up? s)
(up? ??)
(quote ([s]))
Returns true
if s
is an up
structure, false otherwise.
Returns `true` if `s` is an `up` structure, false otherwise.
(using-coordinates coordinate-prototype coordinate-system & body)
using-coordinates
wraps let-coordinates
and allows you to supply a
single coordinate prototype and a single coordinate system.
See let-coordinates
for details about what symbols are bound inside the
body.
Example:
(using-coordinates (up x y) R2-rect
body...)
[[using-coordinates]] wraps [[let-coordinates]] and allows you to supply a single coordinate prototype and a single coordinate system. See [[let-coordinates]] for details about what symbols are bound inside the body. Example: ```clojure (using-coordinates (up x y) R2-rect body...) ```
(v:make-basis-unit i)
(v:make-basis-unit n i)
Returns a basis sequence of n
0s, with 1
in the i
th position.
If n
is not supplied returns an infinite sequence.
Returns a basis sequence of `n` 0s, with `1` in the `i`th position. If `n` is not supplied returns an infinite sequence.
(vector->down v)
(vector->down ??)
(quote ([v]))
Form a down-tuple from a vector.
NOTE that this is an alias of [[down*]] that is more restrictive, in that it only accepts a vector. Use [[down*]] if you'd like to pass an arbitrary sequence. (If you pass a vector to [[down*]]) it will be just as efficient.
Form a down-tuple from a vector. NOTE that this is an alias of [[down*]] that is more restrictive, in that it only accepts a vector. Use [[down*]] if you'd like to pass an arbitrary sequence. (If you pass a vector to [[down*]]) it will be just as efficient.
(vector->up v)
(vector->up ??)
(quote ([v]))
Form an up-tuple from a vector.
NOTE that this is an alias of [[up*]] that is more restrictive, in that it only accepts a vector. Use [[up*]] if you'd like to pass an arbitrary sequence. (If you pass a vector to [[up*]]) it will be just as efficient.
Form an up-tuple from a vector. NOTE that this is an alias of [[up*]] that is more restrictive, in that it only accepts a vector. Use [[up*]] if you'd like to pass an arbitrary sequence. (If you pass a vector to [[up*]]) it will be just as efficient.
(vector-basis->dual vector-basis coordinate-system)
(vector-basis->dual ??)
(quote ([vector-basis coordinate-system]))
(vector-field->basis-components vf dual-basis)
(vector-field->basis-components ??)
(quote ([vf dual-basis]))
Given a vector field vf
generated from basis-components->vector-field
and
a dual basis, returns the original basis components.
NOTE: You can generate a dual basis with [[basis/vector-basis->dual-basis]].
Here's an example of how to use this function to round trip a structure of basis components:
(let [basis (coordinate-system->vector-basis coordsys)
dual (basis/vector-basis->dual basis coordsys)]
(= basis-components
(-> basis-components
(basis-components->vector-field basis)
(vector-field->basis-components dual))))
Given a vector field `vf` generated from [[basis-components->vector-field]] and a dual basis, returns the original basis components. NOTE: You can generate a dual basis with [[basis/vector-basis->dual-basis]]. Here's an example of how to use this function to round trip a structure of basis components: ```clojure (let [basis (coordinate-system->vector-basis coordsys) dual (basis/vector-basis->dual basis coordsys)] (= basis-components (-> basis-components (basis-components->vector-field basis) (vector-field->basis-components dual)))) ```
(vector-field->components vf coordinate-system)
(vector-field->components ??)
(quote ([vf coordinate-system]))
Given a vector field vf
and a coordinate-system
, returns a function from
the coordinate representation of a manifold point to a coordinate
representation of the coordinatized components of the vector field at that
point.
For example:
(let-coordinates [[x y] R2-rect]
(let [f (literal-vector-field 'f R2-rect)]
((vector-field->components f R2-rect)
(up 'x0 'y0))))
;;=> (up (f↑0 (up x0 y0))
;; (f↑1 (up x0 y0)))
Given a vector field `vf` and a `coordinate-system`, returns a function from the coordinate representation of a manifold point to a coordinate representation of the coordinatized components of the vector field at that point. For example: ```clojure (let-coordinates [[x y] R2-rect] (let [f (literal-vector-field 'f R2-rect)] ((vector-field->components f R2-rect) (up 'x0 'y0)))) ;;=> (up (f↑0 (up x0 y0)) ;; (f↑1 (up x0 y0))) ```
Alias for lower
.
Alias for [[lower]].
(vector-field->vector-field-over-map mu:N->M)
(vector-field->vector-field-over-map ??)
(quote ([mu:N->M]))
Defined on FDG p.72.
Defined on FDG p.72.
(vector-field? vf)
(vector-field? ??)
(quote ([vf]))
Returns true if the supplied argument vf
is a vector field operator, false
otherwise.
Returns true if the supplied argument `vf` is a vector field operator, false otherwise.
(vector:generate n f)
(vector:generate ??)
(quote ([n f]))
Generates a new vector of length n
by applying the function f
to integers
in the range $[0,n)$.
Generates a new vector of length `n` by applying the function `f` to integers in the range $[0,n)$.
(velocity local)
(velocity ??)
(quote ([local]))
Returns the velocity element of a local tuple (by convention, the third element).
See coordinate
for more detail.
Returns the velocity element of a local tuple (by convention, the third element). See [[coordinate]] for more detail.
(vf:zero _)
(vf:zero ??)
(quote ([_]))
Returns a vector field that returns, for any supplied function f
, a manifold
function [[manifold/zero-manifold-function]] that maps every input manifold
point
to the scalar value 0.
Returns a vector field that returns, for any supplied function `f`, a manifold function [[manifold/zero-manifold-function]] that maps every input manifold `point` to the scalar value 0.
(wcross->w A)
(wcross->w ??)
(quote ([A]))
(wedge)
(wedge f)
(wedge f & fs)
Computes the wedge product of the sequence fs
of one-forms.
Higher rank forms can be constructed from one-forms by wedging them together. This antisymmetric tensor product is computed as a determinant. The purpose of this is to allow us to use the construction dx^dy to compute the area described by the vectors that are given to it.
See Spivak p275 v1 of 'Differential Geometry' to see the correct definition. The key is that the wedge of the coordinate basis forms had better be the volume element.
Computes the wedge product of the sequence `fs` of one-forms. Higher rank forms can be constructed from one-forms by wedging them together. This antisymmetric tensor product is computed as a determinant. The purpose of this is to allow us to use the construction dx^dy to compute the area described by the vectors that are given to it. See Spivak p275 v1 of 'Differential Geometry' to see the correct definition. The key is that the wedge of the coordinate basis forms had better be the volume element.
(with-argument-types f types)
(with-argument-types ??)
(quote ([f types]))
Given some operator or function f
, returns a copy of f
with the supplied
argument types types
registered in its metadata (if a function) or
context (if an operator).
Retrieve these types with argument-types
.
Given some operator or function `f`, returns a copy of `f` with the supplied argument types `types` registered in its metadata (if a function) or context (if an operator). Retrieve these types with [[argument-types]].
(with-index-types f types)
(with-index-types ??)
(quote ([f types]))
Given some operator or function f
, returns a copy of f
with the supplied
index types types
registered in its metadata (if a function) or
context (if an operator).
Retrieve these types with index-types
.
Given some operator or function `f`, returns a copy of `f` with the supplied index types `types` registered in its metadata (if a function) or context (if an operator). Retrieve these types with [[index-types]].
(zero-like a)
(zero-like ??)
(quote ([a]))
generic zero-like.
In general, this procedure returns the additive identity of the type of its argument, if it exists. For numbers this is 0.
generic zero-like. In general, this procedure returns the additive identity of the type of its argument, if it exists. For numbers this is 0.
(zero-manifold-function point)
(zero-manifold-function ??)
(quote ([point]))
Manifold function that maps every input manifold point
to the scalar value 0.
Manifold function that maps every input manifold `point` to the scalar value 0.
(zero? a)
(zero? ??)
(quote ([a]))
generic zero?.
Is true if x
is an additive identity.
generic zero?. Is true if `x` is an additive identity.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close