Files
playbook/docs/tsl/codegen/dotnet/tutorial/numerical.md
T
csh b6160676b4 ♻️ refactor(tsl): rebuild codegen taxonomy
Move generated builtin and dotnet function docs into the upgraded taxonomy, remove legacy route pages, and regenerate function_index.tsv from markdown headings.
2026-07-07 16:36:08 +08:00

723 B

教学范例 / 数值分析

demoMtIvLdl()

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

demoMtMultiplication()

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

demoMtVaGaussJordan()

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