Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
inttrans[laplace] - ラプラス変換
使い方
laplace(expr, t, s)
パラメータ
expr - 変換される代数式、方程式あるいはそれらの集合
t - expr がそれについて変換される変数
s - 変換のパラメータ
opt - (オプション)その下で実行されるオプション
説明
laplace 関数はラプラス変換を expr に t を変数として適用します。定義は次で与えられます。
infinity / | - s t F(s) = | f(t) e dt | / 0
指数関数、三角関数、Bessel 関数、誤差関数や他の多くの関数を含んだ式を変換することができます。
laplace 関数は、微分(diff または Diff)と積分(int と Int)を認識します。
変換したい代数式が diff(y(t), t, s) のような場合、laplace は初期値 y(0),D(y)(0) などを挿入します。D(y)(0) は 0 での第1次導関数の値、D(D(y)) は 0 での第2次導関数の値、等です。
laplace と invlaplace は Dirac(t) をディラックのデルタ(あるいは単位衝撃)関数、Heaviside(t) をヘビサイドの単位階段関数と認識します。
ユーザは addtable 関数を使って、laplace の内部参照テーブルに独自の関数を加えることができます。
オプション opt が 'NO_INT' と設定された場合は、プログラムは他の手法をすべて失敗した場合に、もとの問題を積分することはしません。これは変換を実行する速度を向上します。
コマンド with(inttrans,laplace) によってこのコマンドの省略形が使えるようになります。
例
with(inttrans):
laplace(t^2+sin(t)=y(t), t, s);
laplace(t^(3/2)-exp(t)+sinh(a*t), t, s);
laplace(diff(y(t), t$2)-y(t)=sin(a*t), t, s-2);
laplace(BesselI(0,a*t), t, s);
laplace(Heaviside(t-c)*f(t),t,s);
assume(c,positive); laplace(Heaviside(t-c)*f(t),t,s);
addtable(laplace,myfunc(t),Myfunc(s),t,s): laplace(t^3*exp(a*t)*myfunc(4*t),t,w);
addtable(laplace,myfunc2(t*a)^n,1/((abs(n)+1)/2)!*Myfunc2(s)+a,t,s,{a,n}, n::odd): laplace(myfunc2(4*t)^7,t,w);
参照
inttrans, inttrans[invlaplace], inttrans[addtable], dsolve
Download Help Document