File: control

package info (click to toggle)
libmath-calculus-newtonraphson-perl 0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, lenny, squeeze, stretch, wheezy
  • size: 60 kB
  • ctags: 6
  • sloc: perl: 49; makefile: 41
file content (31 lines) | stat: -rw-r--r-- 1,480 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Source: libmath-calculus-newtonraphson-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 5)
Build-Depends-Indep: perl (>= 5.6.10-12), libmath-calculus-expression-perl, libmath-calculus-differentiate-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Deepak Tripathi <apenguinlinux@gmail.com>
Standards-Version: 3.8.0
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libmath-calculus-newtonraphson-perl/
Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-calculus-newtonraphson-perl/
Homepage: http://search.cpan.org/dist/Math-Calculus-NewtonRaphson/

Package: libmath-calculus-newtonraphson-perl
Architecture: all
Depends: ${perl:Depends}, ${misc:Depends}, libmath-calculus-expression-perl, libmath-calculus-differentiate-perl
Description:  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.