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

Changelog

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

  [ Debian Janitor ]
  * Apply multi-arch hints. + libmath-calculus-newtonraphson-perl: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Thu, 08 Dec 2022 00:22:55 +0000

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
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libmath-calculus-newtonraphson-perl_0.1-4.dsc 2.3 KiB a33d519cd25007636196cde16ae8ed9fc2f917095a6f5b0b9b6fbbfbc49545a0
libmath-calculus-newtonraphson-perl_0.1.orig.tar.gz 3.8 KiB 3deb190c8ef97919fac7d4a723055cb7ec47f19547b2a74d03b2698788e19d50
libmath-calculus-newtonraphson-perl_0.1-4.debian.tar.xz 3.1 KiB e9c424788c8e633b7013d5c98e8bea8a9f6ac6d656167010145b397798c07e2c

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.