//Carry out principal component of the Gaussian elimination method// function: s...
- 资源大小:1.12 kB
- 上传时间:2021-06-30
- 下载次数:0次
- 浏览次数:1次
- 资源积分:1积分
-
标 签:
数据结构
资 源 简 介
// 带有列主元的高斯消元法
// 功能: 求解线性方程组 Ax = b
// 参数: A - 指向n*n系数矩阵的指针
// b - 常数向量的指针
// n - 方程组的维数
// 返回值:0 - 如果成功。线性方程组的解保存在 b 中
// 1 - 求解失败-//Carry out principal component of the Gaussian elimination method// function: solving linear equations Ax = b// parameters: A- point n* n coefficient matrix of the pointer// b- constant vector pointer// n- Equations dimension// return value: 0- if successful. Linear equations the solution stored in the b in// 1- Solving the failure of