代码搜索:查表法
找到约 10,000 项符合「查表法」的源代码
代码结果 10,000
www.eeworm.com/read/389070/6353164
m c4_6.m
%C4_6.m
%用劈因子法求多项式方程的一对共轭复根
function C4_6
n=input('The order of polynomial?');
a(1)=input('a(0)=');
a(2)=input('a(1)=');
a(3)=input('a(2)=');
a(4)=input('a(3)=');
a(5)=input('a(4)=');
ep=inpu
www.eeworm.com/read/493388/6402132
m cyclicxover.m
function [c1,c2] = cyclicXover(p1,p2,bounds,Ops)
% Cyclic crossover takes two parents P1,P2 and performs cyclic
% crossover by Davis on permutation strings. 循环交叉法
%
% function [c1,c2] = cyclicXover(p
www.eeworm.com/read/486829/6530432
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/486202/6538111
m 5-11.m
%例程5-11 利用基于AR模型的最大熵法估计功率谱
% e.g.5-11.m for example5-11;
% to test function pyulear;
clf;
clear all;
% Generate the signal plus white noise and show
N=1024;
n=0:1/(N-1):1; %Sampling
www.eeworm.com/read/486202/6538117
m 5-10.m
%例程5-10 利用MTM法估计功率谱
% e.g.5-10.m for example5-10.
% to test function pmtm;
clear all;
% Generate the signal with noise and display
N=1024;
n=0:1/(N-1):1; %Sampling frequency N-1
f1=0.1;
www.eeworm.com/read/485729/6545214
plg file.plg
礦ision2 Build Log
Project:
F:\Proteus Source\输入法程序\Project\File.uv2
Project File Date: 01/21/2006
Output:
www.eeworm.com/read/485392/6561013
m 5-11.m
%例程5-11 利用基于AR模型的最大熵法估计功率谱
% e.g.5-11.m for example5-11;
% to test function pyulear;
clf;
clear all;
% Generate the signal plus white noise and show
N=1024;
n=0:1/(N-1):1; %Sampling
www.eeworm.com/read/485392/6561019
m 5-10.m
%例程5-10 利用MTM法估计功率谱
% e.g.5-10.m for example5-10.
% to test function pmtm;
clear all;
% Generate the signal with noise and display
N=1024;
n=0:1/(N-1):1; %Sampling frequency N-1
f1=0.1;
www.eeworm.com/read/482731/6621887
m mutual_main3.m
function tau=mutual_main(data)
%互信息法求tau
c=load('D:/Program Files/MATLAB71/work/gzmbig.txt');
c=c.*0.01;
[thr,sorh,keepapp]=ddencmp('den','wv',c);
data=wdencmp('gbl',c,'db4',2,thr,sorh,keepapp);
www.eeworm.com/read/480611/6666835
cpp 10.9.cpp
//用选择法对10个整数按由大到小的顺序排序
#include
int main()
{
void sort(int x[],int n);
int *p,i,a[10];
p=a;
for(i=0;i