File: transforms.mpt

package info (click to toggle)
mathpiper 0.0.svn2556-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 7,416 kB
  • ctags: 2,729
  • sloc: java: 21,643; xml: 751; sh: 105; makefile: 5
file content (6 lines) | stat: -rw-r--r-- 328 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
Verify( LaplaceTransform(t,s,1), 1/s );
Verify( LaplaceTransform(t,s,t^3), 6/s^4);
Verify( LaplaceTransform(t,s,t), 1/s^2 );
Verify( LaplaceTransform(t,s,t*Exp(4*t)), 1/(4*(s/4-1))^2 );
Verify( LaplaceTransform(t,s,Exp(4*t)*Cos(4*t)), (s-4)/(16*(((s-4)/4)^2+1)) );
Verify( LaplaceTransform(t,s,t^3*Cosh(t)) Where s==2, 82/27 );