牛顿下山法(C语言实现)
目录
1、原理
2、案例
3、代码实现
4、结果
5、误差分析与心得
1、原理
2、案例
3、代码实现
#include"iostream"
#include"stdlib.h"
#include"math.h"
#include"conio.h"
using namespace std;
double function(double x)
{
return sqrt(x)-x*x*x+2;
}
double function_dao(double x) 牛顿下山法(C语言实现)最先出现在Python成神之路。
{
return 0.5*(1/sqrt(x))-3*x*x;
}
void error_output(int p)
{
switch(p)
{
case 1:cout<<"If the number of downhill times is exceeded, please select another initial value!"<
共有 0 条评论