代码搜索:相差法
找到约 10,000 项符合「相差法」的源代码
代码结果 10,000
www.eeworm.com/read/119958/14816025
txt 外推法结果.txt
请输入已知左边界点及步长:
-2
0.5
最优点区间为:[-0.5,5.5]
Press any key to continue
www.eeworm.com/read/118681/14859559
c 改进欧拉法.c
www.eeworm.com/read/219123/14893632
txt 牛顿迭代法.txt
#include
#include
#define N 100
#define eps 1e-6
#define eta 1e-8
float Newton(float(*f)(float),float(*f1)(float),float x0)
{
float x1,d;
int k=0;
do
{
x1=x0-(*f)(x
www.eeworm.com/read/117600/14911680
c 松弛迭代法.c
www.eeworm.com/read/218628/14911722
doc 预测分析法.doc
www.eeworm.com/read/117569/14915456
vbp 排版输入法.vbp
Type=Exe
UserControl=XP_CAN~1.CTL
Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#C:\WINDOWS\SYSTEM\STDOLE2.TLB#OLE Automation
Object={27395F88-0C0C-101B-A3C9-08002B2F49FB}#1.1#0; PICCLP3
www.eeworm.com/read/117569/14915492
vbw 排版输入法.vbw
xp_canvas = 0, 0, 0, 0, C, 66, 66, 433, 405, C
xpcmdbutton = 0, 0, 0, 0, C, 44, 44, 411, 383, C
xptopbuttons = 0, 0, 0, 0, C, 22, 22, 389, 361, C
Form1 = 110, 110, 477, 449, , 88, 88, 455, 427, C
www.eeworm.com/read/218376/14924218
cpp 牛顿迭代法.cpp
#include
#include
#define N 100
#define EPS 1e-6
#define ETA 1e-8
void main()
{
float f(float);
float f1(float);
float x0,y0;
float Newton(float (*)(float),float (*
www.eeworm.com/read/218376/14924220
cpp 改进欧拉法.cpp
#include
#define N 20
void ModEuler(float (*f1)(float,float),float x0,float y0,float xn,int n)
{
int i;
float yp,yc,x=x0,y=y0,h=(xn-x0)/n;
cout