代码搜索:短波差分
找到约 10,000 项符合「短波差分」的源代码
代码结果 10,000
www.eeworm.com/read/339359/12241571
c 二分查找1.c
www.eeworm.com/read/234171/14120106
ppt 二分匹配.ppt
www.eeworm.com/read/227639/14418681
c 二分查找2.c
#include "stdio.h"
typedef struct
{
char *elem;
int length;
}sstable;
void create(char **t)
{
int i;
static char a[11];
*t=a;
for(i=1;i
www.eeworm.com/read/227639/14418868
c 二分查找1.c
www.eeworm.com/read/119641/14825076
txt 用做的lsp分形程序.txt
用做的lsp分形程序
(DEFUN C:fx()
(SETQ grow 0.618)(SETQ angle 40)(SETQ fat 10) ;grow 生长率 angel 生长角度 fat 生长宽度
(setvar "CMDECHO" 0) ;改变上三个值会得到不同的图形
(command "color" "bylayer")
(SETQ ss
www.eeworm.com/read/118681/14859560
c 二分法.c
www.eeworm.com/read/219123/14893627
txt 二分法.txt
#include
#include
#define eps 5e-6
#define delta 1e-6
float Bisection(float a,float b,float(*f)(float))
{
float c,fc,fa=(*f)(a),fb=(*f)(b);
int n=1;
printf("二分次数\t\tc\t\t
www.eeworm.com/read/218376/14924216
ncb 二分法.ncb
www.eeworm.com/read/218376/14924226
cpp 二分法.cpp
#include
#include
#define EPS 5e-6 //根容许的误差
#define DELTA 1e-6 //|f(x)|容许的误差
float Bisection( float a,float b,float (*f)(float) )
{
float c,fc,fa=f(a),fb=f(b);
int n=1;
www.eeworm.com/read/218376/14924227
plg 二分法.plg
Build Log
--------------------Configuration: 二分法 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI~1\