代码搜索:移相法
找到约 10,000 项符合「移相法」的源代码
代码结果 10,000
www.eeworm.com/read/209874/15212371
cpp 牛顿法.cpp
#include
#include
double f(double x);
double fr(double x);
void main()
{
double x0,x1,e;
int N;
coute>>N;
int k=1;
L:
www.eeworm.com/read/11251/214809
pdf 回溯法.pdf
www.eeworm.com/read/11251/214813
pdf 递推法.pdf
www.eeworm.com/read/11251/214815
pdf 贪婪法.pdf
www.eeworm.com/read/13112/268458
c 排序法.c
#include
#include
struct node
{
int key;
}r[20];
struct rnode
{
int key;
int point;
};
main()
{
void print(struct node a[20],int n);
int creat();
void shell
www.eeworm.com/read/327496/3455354
c 排序法.c
#include
#include
struct node
{
int key;
}r[20];
struct rnode
{
int key;
int point;
};
main()
{
void print(struct node a[20],int n);
int creat();
void shell
www.eeworm.com/read/353219/3087727
task 施肥法.task
Nested=false
TableType=agri_tech
VisitBeginUrl=http://www.zjsp.net/zjsp/webfun/f1/f1_prdt_more.jsp?tid=1&cid=163
VisitKey=tid
StartPageNum=1
EndPageNum=1
incPageNum=1
CollectedBeginUrl=http://www.zj
www.eeworm.com/read/353219/3088827
task 施肥法.task
Nested=false
TableType=agri_tech
VisitBeginUrl=http://www.zjsp.net/zjsp/webfun/f1/f1_prdt_more.jsp?tid=1&cid=163
VisitKey=tid
StartPageNum=1
EndPageNum=1
incPageNum=1
CollectedBeginUrl=http://www.zj
www.eeworm.com/read/472692/6862089
m 梯度法.m
%主函数main.m
clc
clear
a=input('请输入根的下限:');
b=input('请输入根的上限:');
e=input('请输入允许误差:');
dx=input('请输入检测步长:');
x1=a;
x2=b;
d1=-[4*x1;2*x2];
d=sqrt((4*x1)^2+(2*x2)^2);
cout=0;
if d>e
x3
www.eeworm.com/read/471405/6892435
txt 牛顿法.txt
#include
#include
#define eps 0.00001 /* 容许误差 */
float f(float x) /* 定义函数f(x) */
{ return((-3*x+4)*x-5)*x+6; }
float f1(float x) /* 定义函数f(x)的导数 */
{ return (-9*x+8)*x-5;