随笔分类 -  numericalAnalysis

摘要:1 #include 2 #include 3 #define maxlen 100 4 #define eps 0.5*1e-5 5 double a=0; 6 double b=1; 7 double f(double x){ 8 return 4/(1+x*x); 9 } 10 double t(int n){ 11 int i; 12 ... 阅读全文
posted @ 2018-12-13 23:24 f-- 阅读(887) 评论(0) 推荐(0)
摘要:1 #include 2 #include 3 #include 4 int main() 5 { int i,number; 6 double out; 7 srand((unsigned) time(NULL)); 8 for (i=0; i<50; i++) 9 { 10 number = rand() % 101; 11 out=number*1.0; 12 ... 阅读全文
posted @ 2018-10-07 17:09 f-- 阅读(141) 评论(0) 推荐(0)
摘要:1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 const int MAXN = 10000; 8 double a[MAXN][MAXN]; 9 double b[MAXN]; 10 double x[MAXN]; 11 int main() 12 { 1... 阅读全文
posted @ 2018-10-07 17:04 f-- 阅读(202) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/leader880022/article/details/44886031 阅读全文
posted @ 2018-10-07 16:25 f-- 阅读(390) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/qq_39216184/article/details/79736359 阅读全文
posted @ 2018-09-11 22:30 f-- 阅读(441) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/qq_26025363/article/details/53027926 阅读全文
posted @ 2018-09-09 22:15 f-- 阅读(656) 评论(0) 推荐(0)