博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
高斯消去法_解线性方程组的直接解法
阅读量:4155 次
发布时间:2019-05-26

本文共 859 字,大约阅读时间需要 2 分钟。

高斯消去法_解线性方程组的直接解法

标签:计算方法实验

#include 
const int maxn = 15 + 1;double a[maxn][maxn], b[maxn];int main(){ int n; freopen("gauss.txt", "r", stdin); //读入数据 scanf("%d", &n); for(int i = 1; i <= n; i++) { for(int j = 1; j <= n; j++) scanf("%lf", &a[i][j]); scanf("%lf", &b[i]); } for(int k = 1; k <= n - 1; k++) //消元过程 for(int i = k + 1; i <= n; i++) { double Mik = a[i][k] / a[k][k]; for(int j = k + 1; j <= n; j++) a[i][j] -= Mik * a[k][j]; b[i] -= Mik * b[k]; } b[n] /= a[n][n]; //回代过程 for(int i = n - 1; i >= 1; i--) { double sum = 0; for(int j = i + 1; j <= n; j++) sum += a[i][j] * b[j]; b[i] = (b[i] - sum) / a[i][i]; } for(int i = 1; i <= n; i++) printf("x%d = %f\n", i, b[i]); //小优化b[]->x[] return 0;}

数据文件

input
实验结果
output

你可能感兴趣的文章
MySQL-数据库、数据表结构操作(SQL)
查看>>
OpenLDAP for Windows 安装手册(2.4.26版)
查看>>
图文介绍openLDAP在windows上的安装配置
查看>>
Pentaho BI开源报表系统
查看>>
Pentaho 开发: 在eclipse中构建Pentaho BI Server工程
查看>>
JSP的内置对象及方法
查看>>
android中SharedPreferences的简单例子
查看>>
android中使用TextView来显示某个网址的内容,使用<ScrollView>来生成下拉列表框
查看>>
andorid里关于wifi的分析
查看>>
Spring MVC和Struts2的比较
查看>>
Hibernate和IBatis对比
查看>>
Spring MVC 教程,快速入门,深入分析
查看>>
Android 的source (需安装 git repo)
查看>>
LOCAL_PRELINK_MODULE和prelink-linux-arm.map
查看>>
Simple Guide to use the gdb tool in Android environment
查看>>
Netconsole to capture the log
查看>>
Build GingerBread on 32 bit machine.
查看>>
How to make SD Card world wide writable
查看>>
Detecting Memory Leaks in Kernel
查看>>
Linux initial RAM disk (initrd) overview
查看>>