
Thomas algorithm(托马斯算法):一种用于高效求解三对角线线性方程组(tridiagonal system)的直接法,本质上是对高斯消元的专门化与简化;时间复杂度通常为 **O(n)**,常用于一维差分离散得到的线性系统。
/tms lrm/
The Thomas algorithm solves tridiagonal systems very quickly.
托马斯算法可以非常快速地求解三对角线方程组。
After discretizing the heat equation, we used the Thomas algorithm to compute the temperature profile along the rod.
在对热传导方程进行离散化之后,我们使用托马斯算法来计算杆上沿长度方向的温度分布。
“Thomas algorithm” 属于人名命名的术语,指由 Thomas(托马斯)相关工作而得名的一类三对角线方程组求解方法;在数值分析与计算物理中被广泛采用。该算法也常被称为 TDMA(Tridiagonal Matrix Algorithm,三对角矩阵算法)。