代码搜索:伏安法

找到约 10,000 项符合「伏安法」的源代码

代码结果 10,000
www.eeworm.com/read/373458/9455007

m diedai.m

%迭代法求解 %令x=(x^2+exp(x)+2)/3 clc x=0; x1=fun(x); while(abs(x1-x)>1e-6) x=x1; x1=fun(x); t=x1-x; end b=x1; fprintf('%.6f\n',b)
www.eeworm.com/read/146253/12662009

m diedai.m

%迭代法求解 %令x=(x^2+exp(x)+2)/3 clc x=0; x1=fun(x); while(abs(x1-x)>1e-6) x=x1; x1=fun(x); t=x1-x; end b=x1; fprintf('%.6f\n',b)
www.eeworm.com/read/268800/11120789

m test3.m

%test3.m 谱分析法测试文件 hn=DTMF('*',0.89,1); num=Receiv1(hn)
www.eeworm.com/read/237997/13913547

c polynominal.c

/* file name : polynominal.c Description :多项式相加实例 利用数组表示法做多项式相加
www.eeworm.com/read/128512/14292428

txt 说明.txt

这是一个提供给使用遥控器的嵌入式设备开发的一个中文拼音输入法,是用键盘模拟遥控器, F9,F11,F12为换行,数字和+号键来操作,在视图菜单中点打开输入法,
www.eeworm.com/read/390524/8460895

txt 预测分析法.txt

#include #include #include #include struct code_val { char code;char val[20]; }; const char *p[ ]= //指向产生式右部符号串 {"TD","+TD","","FS","*FS"
www.eeworm.com/read/189078/8490798

txt 背包贪婪法程序.txt

背包问题之贪婪算法求解C语言源代码[原创] 关于背包问题描述请看http://bugeyes.blog.edu.cn/user1/20989/archives/2005/351526.shtml 。 其实原来的程序也是采用了贪婪算法,不过下面程序中的beibao1函数采用了贪婪算法的另一种写法,beibao函数是以前的代码,用来比较两种算法: #define K 10 #defi