Talbot-Methode
Die Talbot Methode (oft auch Talbot-Algorithmus genannt) ist eine numerische Methode, um die inverse Laplace-Transformierte zu approximieren. ist die bereits bekannte Laplace-Transformierte der gesuchten Funktion . Mittels der Talbot-Methode kann entsprechend folgender Vorschrift näherungsweise gefunden werden:[1][2]

Dabei gilt:
In Programmiersprachen, die mit komplexen Zahlen rechnen können und wo trigonometrische Funktionen vorprogrammiert sind (bsp. Python, Octave, MATLAB, Mathematica), ist die Methode einfach zu implementieren. Je größer man wählt umso größere Bereiche von werden korrekt approximiert. Allerdings nimmt damit auch die Rechenzeit zu. Die Maschinengenauigkeit begrenzt das größtmögliche , das rauschfreie Resultate liefert.
Geschichte
Die Methode wurde 1979 von A. Talbot publiziert.[3]
Beispiel
Beispielimplementierung in GNU Octave:
function endwert = talbot(N,funktion,t)
r = 2*N/(5*t);
summe = funktion(r)*exp(r*t)/2;
for k = 1:N-1
thetak = k*pi/N;
pk = r*thetak*(cot(thetak) + I);
zk = thetak + cot(thetak)*(thetak*cot(thetak) - 1);
summe = summe + real( exp(t*pk)*funktion(pk)*(1+I*zk) );
endfor
endwert = summe*(r/N); return
endfunction
Einzelnachweise
- ↑ Kristopher L. Kuhlman: Review of inverse Laplace transform algorithms for Laplace-space numerical approaches. In: Numer. Algor. 63. Jahrgang, 2013, S. 339 – 355, doi:10.1007/s11075-012-9625-3 (englisch).
- ↑ J. Abate, P. P. Valko: Multi-precision Laplace transform inversion. In: Int. J. Numer. Meth. Engng. 60. Jahrgang, 2004, S. 979–993, doi:10.1002/nme.995 (englisch).
- ↑ A. Talbot: The accurate numerical inversion of Laplace transforms. In: IMA J. Appl. Math. 23. Jahrgang, Nr. 1, 1979, S. 97, doi:10.1093/imamat/23.1.97 (englisch).
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.