文章分类 -  数值计算

摘要:用SOR法求解线性方程组,并使用高斯消去法验证算法 点击查看代码 #include <stdio.h> #include <stdlib.h> /********************************** 项目名称:超松弛迭代法解线性方程组 x1 x2 x3 x4 d 5 1 -1 -2 阅读全文
posted @ 2022-02-17 22:48 相对维度 阅读(77) 评论(0) 推荐(0)
摘要:复化积分公式应用计算以下公式,并能限制误差 \[ \int_{0}^{1} \frac{sinx}{x} {\rm d}x \] 点击查看代码 #include <stdio.h> #include <stdlib.h> #include <math.h> /******************** 阅读全文
posted @ 2022-02-17 22:39 相对维度 阅读(131) 评论(0) 推荐(0)