数值计算
yangalbert
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
矩阵类C++实现
(1) Matrix.h 文件 #ifndef __MATRIX_H__ #define __MATRIX_H__ #include #include #include #include #include using std::vector; using std::string; using std::cout; using std::cin; using std::istream原创 2012-03-23 18:50:48 · 35539 阅读 · 10 评论 -
牛顿下山法求解非线性方程(组)(C实现)
1、算法描述 (1)符号说明与基本假设 对于非线性方程组: (1) 引入向量: 可将(1)式改写为 (2) 通常考虑方程(2)只有唯一解的情形。 (2)牛顿原创 2012-04-17 18:25:58 · 10115 阅读 · 2 评论
分享