• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Math/Symbolic/Custom/H05-Jun-2013-11425

t/H05-Jun-2013-2922

ChangesH A D05-Jun-2013207 75

MANIFESTH A D05-Jun-2013193 87

META.ymlH A D05-Jun-2013646 2423

Makefile.PLH A D25-May-2013593 1310

READMEH A D25-May-20131.1 KiB4427

README

1Math::Symbolic::Custom::ErrorPropagation version 0.10
2=====================================================
3
4This module extends the functionality of Math::Symbolic by offering
5facilities to calculate Gaussian Error Propagation using the well
6known formula:
7
8variance(f(x,y,...)) = sqrt( variance(x)^2 * (df/dx)^2 + ... )
9
10INSTALLATION
11
12To install this module type the following:
13
14   perl Makefile.PL
15   make
16   make test
17   make install
18
19DEPENDENCIES
20
21This module requires these other modules and libraries:
22
23  Test::More (version 0.44 and up)
24  Math::Symbolic (version 0.132 and up)
25
26SEE ALSO
27
28Current versions of this module may be found on http://steffen-mueller.net or
29CPAN.
30
31Please send feedback, bug reports, and support requests to one of the
32contributors or the Math::Symbolic mailing list.
33
34List of contributors:
35
36  Steffen M�ller, symbolic-module at steffen-mueller dot net
37
38COPYRIGHT AND LICENCE
39
40Copyright (C) 2004 Steffen Mueller
41
42This library is free software; you can redistribute it and/or modify
43it under the same terms as Perl itself.
44