File: transforms.mpt

package info (click to toggle)
mathpiper 0.81f%2Bsvn4469%2Bdfsg3-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 36,572 kB
  • sloc: java: 57,479; lisp: 13,721; objc: 1,300; xml: 988; makefile: 114; awk: 95; sh: 38
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 );