Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
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