Math-Giac/README

66 lines
1.3 KiB
Plaintext
Raw Permalink Normal View History

2020-05-14 14:36:04 -05:00
Math-Giac
2020-05-28 10:09:54 -05:00
This implements a interface to giac, a CAS(Computer Algebra System)
2020-05-14 14:36:04 -05:00
2020-05-28 10:09:54 -05:00
use Math::Giac;
2020-05-14 14:36:04 -05:00
2020-05-28 10:09:54 -05:00
my $giac;
eval( {
$giac=$Math::Giac->new;
} );
if ( $@ ){
die("Failed to locate the giac binary");
}
my $results=$giac->run('sin(x)+cos(pi)-3');
print $results."\n";
$results=$giac->run('mathml(sin(x)+cos(pi)-3)');
print $results."\n";
$giac->set_vars({ A=>2 });
my $results=$giac->run('sin(A)+cos(pi)-3');
2020-05-14 14:36:04 -05:00
INSTALLATION
To install this module, run the following commands:
perl Makefile.PL
make
make test
make install
SUPPORT AND DOCUMENTATION
After installing, you can find documentation for this module with the
perldoc command.
perldoc Math::Giac
You can also look for information at:
RT, CPAN's request tracker (report bugs here)
https://rt.cpan.org/NoAuth/Bugs.html?Dist=Math-Giac
AnnoCPAN, Annotated CPAN documentation
http://annocpan.org/dist/Math-Giac
CPAN Ratings
https://cpanratings.perl.org/d/Math-Giac
Search CPAN
https://metacpan.org/release/Math-Giac
2020-05-28 10:09:54 -05:00
Repository
https://gitea.eesdp.org/vvelox/Math-Giac
2020-05-14 14:36:04 -05:00
LICENSE AND COPYRIGHT
This software is Copyright (c) 2020 by Zane C. Bowers-HAdley.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)