代码搜索:相差法
找到约 10,000 项符合「相差法」的源代码
代码结果 10,000
www.eeworm.com/read/425971/10299956
h c8-1.h
/* c8-1.h 边界标识法可利用空间表的结点结构 */
/* head和foot分别是可利用空间表中结点的第一个字和最后一个字(WORD) */
typedef struct WORD /* 字类型 */
{
union
{
struct WORD *llink; /* 头部域,指向前驱结点 */
struct WORD *uplink
www.eeworm.com/read/354349/10362235
m nrflow.m
%牛顿——拉夫逊法进行潮流计算
%n=input('请输入节点数:n=');
%nl=input('请输入支路数:nl=');
%isb=input('请输入平衡母线节点号:isb=');
%pr=input('请输入误差精度:pr=');
%iternu=input('请输入迭代次数:iternu=');
%B1=input('请输入由支路参数形成的矩阵: B1=');
%B2=i
www.eeworm.com/read/161509/10400087
m lyapunov_wolf.m
function [lmd1] = lyapunov_wolf(data,N,m,tau,P)
% wolf法求最大lyapunov指数
% data; % data为原始数据,列向量,n行1列
% m=最小嵌入维数;
% tau=2; % tau为时间延迟
% 作者:Adu,武汉大学,adupopo@163.com
lmd1=lyapunov_wolf_dll(data,tau,m,P)
www.eeworm.com/read/353914/10406033
c 39.c
#include
#include
//"拼音输入法汉字排列表"
unsigned char code PY_mb_a []={"阿啊"};
unsigned char code PY_mb_ai []={"哎哀唉埃挨皑癌矮蔼艾爱隘碍"};
unsigned char code PY_mb_an []={"安氨鞍俺岸按案胺
www.eeworm.com/read/353823/10415499
m main_averagedisplacement.m
% 平均位移法求时延
% 使用平台 - Matlab7.0
% 作者:陆振波,海军工程大学
% 欢迎同行来信交流与合作,更多文章与程序下载请访问我的个人主页
% 电子邮件:luzhenbo@yahoo.com.cn
% 个人主页:http://luzhenbo.88uu.com.cn
clc
clear all
close all
%-----------------------------
www.eeworm.com/read/279550/10421238
txt 最大流 预留推进(my).txt
//网络最大流 预留推进法
/*
例子1:
输入:
4 5 1 4
1 2 6
1 3 4
2 3 3
2 4 4
3 4 8
输出:
10
例子2:
输入:
4 5 1 4
1 2 7
1 3 2
2 3 3
2 4 1
3 4 5
输出:
6
*/
#include
#include
www.eeworm.com/read/279188/10456765
c imm.c
#include "imesample.h"
//定义输入法要处理的键
BYTE g_bPrecess[] = {
0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, // 00-0F VK_BACK
0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, // 10-1F
www.eeworm.com/read/352747/10518574
cpp algo8-1.cpp
// algo8-1.cpp 边界标识法。实现算法8.1的程序
#include"c1.h"
#include"c8-1.h"
#define MAX 1000 // 可利用空间的大小(以WORD的字节数为单位)
#define e 10 // 块的最小尺寸-1(以WORD的字节数为单位)
Space AllocBoundTag(Space &pav,int n) //
www.eeworm.com/read/352747/10519512
h c8-1.h
/* c8-1.h 边界标识法可利用空间表的结点结构 */
/* head和foot分别是可利用空间表中结点的第一个字和最后一个字(WORD) */
typedef struct WORD /* 字类型 */
{
union
{
struct WORD *llink; /* 头部域,指向前驱结点 */
struct WORD *uplink
www.eeworm.com/read/423913/10526919
m ex071600.m
% 第七章: 例 7.16
% 频率采样技术: 低通, 最优法T1 & T2
% wp = 0.2pi, ws=0.3pi, Rp=0.25dB, As=50dB
% T1 = 0.5925, T2=0.1099
M = 60; alpha = (M-1)/2; l = 0:M-1; wl = (2*pi/M)*l;
Hrs = [ones(1