Artifact 046e6762b69d80a4cbb9afa1ac5fc8b7e89c6db95c689e1c27d966247d6bd0ff:
- Executable file
r37/packages/trigint/trigint.tst
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 593) [annotate] [blame] [check-ins using] [more...]
- Executable file
r38/packages/trigint/trigint.tst
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 593) [annotate] [blame] [check-ins using]
% some test examples for the trigint package. If the input expression is % free of sin, cos or tan at the moment, then no Weierstrass substitutions % will be made, and the standard int operator is called. trigint(1/x,x); trigint(1,y); trigint(sin(x),x); trigint(1/(cos(x)+2),x); trigint(1/(cos(x)-2),x); trigint(1/(sin(x)),x); trigint(1/(sin(x)+2),x); trigint(15/(cos(x)*(5-4*cos(x))),x); trigint(3/(5+4*sin(x)),x); trigint(3/(5-4*cos(x)),x); trigint(tan(x),x); %trigint(sqrt(cos(x)),x); on tracetrig; trigint(1/(cos(x)-5),x); trigint(1/(sqrt(sin(x))),x); end;