📦 deps(tsl): sync tsl-playbook from 9dbd156d

Source-Commit: 9dbd156d0e
This commit is contained in:
ci[bot]
2026-07-07 08:44:07 +00:00
commit a2d9174549
524 changed files with 393502 additions and 0 deletions
@@ -0,0 +1,19 @@
# 教学范例 / 数值分析
## `Demo_mt_iv_ldl()`
mt_iv_ldl()函数教学函数。求对称正定矩阵的逆矩阵,其中求逆的矩阵A= array( (5.0,7.0,6.0,5.0), (7.0,10.0,8.0,7.0),(6.0,8.0,10.0,9.0), (5.0,7.0,9.0,10.0))。
返回:any
## `Demo_mt_Multiplication()`
mt_Multiplication()函数教学函数。求N×M阶矩阵A与M×L阶矩阵B的乘积矩阵,即C=A×B,其中矩阵为A=array((1,2,3,4), (5,6,7,8)),B=array((3,-3), (-2,4), (1,8), (-1,-3))。
返回:any
## `Demo_mt_va_Gauss_Jordan()`
mt_va_Gauss_Jordan ()函数教学函数。求矩阵行列式值,其中求行列式值的矩阵A= array ( (3.0,-3.0,-2.0,4.0), (5.0,-5.0,1.0,8.0), (11.0,8.0,5.0,-7.0), (5.0,-1.0,-3.0,-1.0))。
返回:float