代码搜索:相差法
找到约 10,000 项符合「相差法」的源代码
代码结果 10,000
www.eeworm.com/read/440256/7691401
c pinyinshuyufa.c
//"拼音输入法汉字排列表"
unsigned char code PY_mb_a []={"阿啊"};
unsigned char code PY_mb_ai []={"哎哀唉埃挨皑癌矮蔼艾爱隘碍"};
unsigned char code PY_mb_an []={"安氨鞍俺岸按案胺暗"};
unsigned char code PY_mb_ang []
www.eeworm.com/read/439096/7717016
plg file.plg
礦ision3 Build Log
Project:
D:\输入法\Project_3\File.uv2
Project File Date: 01/21/2006
Output:
Build target 'Target 1'
compiling T9_V1.c...
link
www.eeworm.com/read/326363/7809327
cpp simple.cpp
//用简单迭代法求方程f(x)=X*X*X+4*X*X-10=0在区间[1,2]内的根
#include
#include
using namespace std;
int main()
{
float x,y,z,q;
coutx;
do
{
y=(sqrt(10-
www.eeworm.com/read/326363/7809335
cpp newton.cpp
//用牛顿迭代法求方程f(x)=X*X*X+4*X*X-10=0在区间[1,2]内的根
#include
#include
using namespace std;
int main()
{
float x,y,q,e;
coutx;
e=x;
do
{
y=e-
www.eeworm.com/read/199605/7843480
m duffing1.m
%Duffing间歇性混沌产生
%调用duffingpinlv函数
clear all
tspan=[0:0.004:600];%龙格-库塔法求解方程,积分步长选0.04
x0=[1,1];%初始值
[t,z]=ode45('duffingpinlv',tspan,x0);
plot(t,z(:,1))%时序图
%plot(z(:,1),z(:,2))%相图
www.eeworm.com/read/433381/7934177
cpp rootleastsquaregeneralizedinverse1.cpp
//RootLeastSquareGeneralizedInverse1.cpp
//非线性方程组最小二乘解的广义逆法示例1
#include //输入输出流头文件
#include "LinearEquation.h" //线性方程组求解头文件
#include "NonLinearEquation.h" //非线性方程(组)求解头文件
using n
www.eeworm.com/read/433381/7934187
cpp rootquasinewton.cpp
//RootQuasiNewton.cpp 拟牛顿法求解非线性方程组一组实根
#include //输入输出流头文件
#include "polynomials.h" //多项式及连分式求值头文件
#include "NonLinearEquation.h" //非线性方程(组)求解头文件
using namespace std; //名字空间
www.eeworm.com/read/433381/7934193
cpp rootleastsquaregeneralizedinverse2.cpp
//RootLeastSquareGeneralizedInverse2.cpp
//非线性方程组最小二乘解的广义逆法示例2
#include //输入输出流头文件
#include "LinearEquation.h" //线性方程组求解头文件
#include "NonLinearEquation.h" //非线性方程(组)求解头文件
using
www.eeworm.com/read/197963/7960079
plg table.plg
礦ision2 Build Log
Project:
D:\单片机教程\C51实例代码\二分法查表\table.uv2
Project File Date: 06/20/2004
Output:
www.eeworm.com/read/398391/7990846
txt 某飞行器弹道仿真研究.txt
对某飞行器的全空域飞行弹道进行了仿真研究.建立了飞行器空间运动的数学模型,应用“牛顿插值多项式法”对气动力参数进行了辨识,用C语言编制了仿真程序,并给出了仿真结果及分析。