libmath-calculus-newtonraphson-perl 0.1-3 source package in Ubuntu

Changelog

libmath-calculus-newtonraphson-perl (0.1-3) unstable; urgency=medium

  [ Damyan Ivanov ]
  * declare conformance with Policy 4.1.3 (no changes needed)

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ Debian Janitor ]
  * Bump debhelper from old 10 to 12.
  * Set debhelper-compat version in Build-Depends.

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

 -- Jelmer Vernooij <email address hidden>  Wed, 15 Jun 2022 18:55:19 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libmath-calculus-newtonraphson-perl_0.1-3.dsc 2.3 KiB 8be4d8e80cd7689743b45af5675e7b5ba3e73fab80b1697bb032accd36ad8f8b
libmath-calculus-newtonraphson-perl_0.1.orig.tar.gz 3.8 KiB 3deb190c8ef97919fac7d4a723055cb7ec47f19547b2a74d03b2698788e19d50
libmath-calculus-newtonraphson-perl_0.1-3.debian.tar.xz 3.0 KiB 41c284b41b8dcaa1f5cb5354f3aba96f87be39c0456b7f1c588e96cd173415ff

Available diffs

No changes file available.

Binary packages built by this source

libmath-calculus-newtonraphson-perl: Algebraic Newton Raphson Implementation

 The Math::Calculus::NewtonRaphson module takes an algebraic expression,
 parses it and then uses the Newton Raphson method to solve it.
 The Newton Raphson method relies on the fact that the expression
 you pass in evaluates to zero where there is a solution. That is, to solve:-
 .
 x^2 = 5
 .
 You would need to pass in:-
 .
 x^2 - 5
 .
 It understands expressions containing any of the operators +, -, *, / and ^
 (raise to power), bracketed expressions to enable correct precedence and the
 functions ln, exp, sin, cos, tan, sec, cosec, cot, sinh, cosh, tanh, sech,
 cosech, coth, asin, acos, atan, asinh, acosh and atanh.