代码搜索:查表法
找到约 10,000 项符合「查表法」的源代码
代码结果 10,000
www.eeworm.com/read/317203/13507627
frm form3.frm
VERSION 5.00
Object = "{74848F95-A02A-4286-AF0C-A3C755E4A5B3}#1.0#0"; "actskn43.ocx"
Begin VB.Form Form3
Caption = "直角坐标法放样数据计算"
ClientHeight = 5865
ClientLeft = 2
www.eeworm.com/read/314070/13575618
cpp migong.cpp
//使用回溯法求解迷宫问题migong.cpp
#include
#include
#include
#include
//路口的结构体定义
typedef struct
{int left;
int forward;
int right;
}InterS;
//迷宫类定义与实现
c
www.eeworm.com/read/310200/13655695
cpp jishufa1.cpp
//基数排序法(类方法)jishufa1.cpp
#include
#include
#include
#include
const int N=10;
class jishu
{public:
jishu(int d[],int s):n(s)
{for(int i=0;i
www.eeworm.com/read/310200/13655936
cpp migong.cpp
//使用回溯法求解迷宫问题migong.cpp
#include
#include
#include
#include
//路口的结构体定义
typedef struct
{int left;
int forward;
int right;
}InterS;
//迷宫类定义与实现
c
www.eeworm.com/read/307450/13722110
m mutual_information_main.m
function tau=Mutual_Information_main(data)
%互信息法求tau
%data; % 时间序列,列向量
max_t = 20; % 本程序默认最大时延
%Part = 128; % 本程序默认box大小
[entropy]=mutual(data,max_t);
for i = 1:length(entropy)-1
www.eeworm.com/read/306675/13740021
m mutual_information_main.m
function tau=Mutual_Information_main(data)
%互信息法求tau
%作者:Adu 武汉大学 adupopo@163.com
%data; % 时间序列,列向量
%max_tau = 100; % 本程序默认最大时延
%Part = 128; % 本程序默认box大小
[entropy]=mutual(data,128);
www.eeworm.com/read/305030/13779715
m missileguidancesimudemo01.m
%function [ output_args ] = MissileGuidanceSimuDemo01( input_args )
%%
%% 导弹追踪导引法的相对弹道簇图MATLAB仿真计算程序
%%
%% COPYRIGHT (C) vxLand , 2002-2008
%%
clc; clear; close all;
r0 = 1; p=2; r0x = r0 /3;
www.eeworm.com/read/302325/13837791
m ex6_48.m
randn('state', 1);
n = 0:99;
s = sin(pi/3*n) + 2*sin(pi/4*n) + randn(1, 100);
X = corrmtx(s, 7, 'mod'); % 使用改进的协方差法估计互相关矩阵
[s, w, V, E] = peig(X, 4, 'whole');
peig(X, 4, 'whole');
www.eeworm.com/read/389070/6353162
m c3_5.m
%*******************************************************
%程序C3_5.M
%用高斯-塞德尔迭代法求解系数矩阵具有主对角线绝对占优的线性代数方程组
% a: 系数矩阵;b:右端常数项;n:方程的阶数;x:方程的解
%********************************************************