line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Task::Math::Symbolic; |
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
28726
|
use strict; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
117
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
our $VERSION = '1.01'; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 NAME |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
Task::Math::Symbolic - Math::Symbolic with lots of plugins |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 SYNOPSIS |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
C |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 DESCRIPTION |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
This installs Math::Symbolic and a load of easily installable (i.e. pure Perl) |
18
|
|
|
|
|
|
|
plugins that make the module so much more powerful. |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
L - The base module |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
L - Extension for finding subtrees |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
L - Extension for Gaussian Error Propagation |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
L - Pattern matching on Math::Symbolic trees |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
L - User defined simplification routines |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
L - Transformations using Math::Symbolic trees |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
L - Big number support for the Math::Symbolic parser |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
L - Complex number support for the Math::Symbolic parser |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
L - Inlined Math::Symbolic functions |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
L - Turns of Math::Symbolic simplification |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
L - Generates parser extensions such as Math::SymbolicX::Complex. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
L - Implementation of some statistical distributions |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 AUTHOR |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Steffen Mueller, C |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 LICENSE |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
This library is free software, you can redistribute it and/or modify it under |
51
|
|
|
|
|
|
|
the same terms as Perl itself. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=cut |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
1; |