文件名称:4

  • 所属分类:
  • 数据库编程
  • 资源属性:
  • [C/C++] [源码]
  • 上传时间:
  • 2014-12-27
  • 文件大小:
  • 128kb
  • 下载次数:
  • 1次
  • 提 供 者:
  • 相关连接:
  • 下载说明:
  • 别用迅雷下载,失败请重下,重下不扣分!

介绍说明--下载内容均来自于网络,请自行研究使用

1.  实现二分法求解方程。编写并使用以下函数:

double SolveRoot(double(*pf)(double x),double a,double b,int n)

这里,pf指向一个函数f,f用来定义要求解的方程f(x)=0,a和b是未知解x的上下界(即a<=x<=b),n是循环次数。例如,如果f(x)=x*x-2,则SolveRoot (f,1,2,100)将返回1.414213562373095,即方程为x*x=2的解。二分法的原理是反复地把区间分为两个相等区间,然后用其中含有解的一半代替该区间,依次类推,得到满足精度的解。它通过检查f(a)和f(b)的符号来判断解是否在区间中。

程序运行结果为:

第一行为:SolveRoot(f,1,2,10) = 1.5

中间若干行

最后一行为:The exact SolveRoot = 1.414213562

-1. Achieve the dichotomy solve the equations. Equation f double SolveRoot (double (* pf) (double x), double a, double b, int n) here, pf points to a function f, f used to define the requirements for the solution of (x) = 0: write and use the following function , a and b are unknown solution x of the upper and lower bounds (i.e., a < = x < = b), n is the number of cycles. For example, if f (x) = x* x-2, then SolveRoot (f, 1,2,100) returns 1.414213562373095, i.e., the equation for x* x = Solution 2. Dichotomy principle is repeatedly divided into two equal sections to the interval, then the solution which contains half the place of the range, and so on, to get to meet the accuracy of the solution. It does this by checking f (a) and f (b) of the symbol to determine whether the interval Solutions. Run results: The first behavior: SolveRoot (f, 1,2,10) = 1.5 among several lines of the last acts: The exact SolveRoot = 1.414213562
(系统自动生成,下载前可以参看下载内容)

下载文件列表





4\6.cpp

.\c++_ch06_06.vcxproj

.\c++_ch06_06.vcxproj.filters

.\Debug\6.obj

.\.....\c++_ch06_06.lastbuildstate

.\.....\c++_ch06_06.log

.\.....\CL.read.1.tlog

.\.....\CL.write.1.tlog

.\.....\link-cvtres.read.1.tlog

.\.....\link-cvtres.write.1.tlog

.\.....\link-rc.read.1.tlog

.\.....\link-rc.write.1.tlog

.\.....\link.read.1.tlog

.\.....\link.write.1.tlog

.\.....\vc110.idb

.\.....\vc110.pdb

.\Debug

4

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度更多...
  • 请直接用浏览器下载本站内容,不要使用迅雷之类的下载软件,用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.

相关评论

暂无评论内容.

发表评论

*主  题:
*内  容:
*验 证 码:

源码中国 www.ymcn.org