代码搜索:信号路径优化
找到约 10,000 项符合「信号路径优化」的源代码
代码结果 10,000
www.eeworm.com/read/247478/12657958
m final.m
clear;
P1=load('200540-1.txt')'
PP=P1(351:450);
PS=interp(PP,10);%10内插
P=medfilt1(PS,9);%中值滤波
np=min(P); %信号最小值
mp=max(P); %信号最大值
dp=np+(mp-np)./4; %信号下四分之一
up=np+2.*(mp-np)./3;%信号上三分之二
%P=me
www.eeworm.com/read/247478/12657960
m edge.m
clear;
P1=load('200540-1.txt')'
PP=P1(351:450);
PS=interp(PP,10);%10内插
P=medfilt1(PS,9);%中值滤波
np=min(P); %信号最小值
mp=max(P); %信号最大值
dp=np+(mp-np)./4; %信号下四分之一
up=np+2.*(mp-np)./3;%信号上三分之二
%P=me
www.eeworm.com/read/247478/12657976
m edge_detection.m
clear;
P1=load('200540-1.txt')'
PP=P1(351:450);
PS=interp(PP,10);%10内插
P=medfilt1(PS,9);%中值滤波
np=min(P); %信号最小值
mp=max(P); %信号最大值
dp=np+(mp-np)./4; %信号下四分之一
up=np+2.*(mp-np)./3;%信号上三分之二
%P=me
www.eeworm.com/read/176044/9521043
h improvedinsertsorter.h
//优化的插入排序类
#if !defined(AFX_ImprovedInsertSorter)
#define AFX_ImprovedInsertSorter
#include "InsertSorter.h"
template
class ImprovedInsertSorter:public InsertSo
www.eeworm.com/read/328550/13021322
m antopt.m
%PROGRAM 8: ANT COLONY OPTIMIZATION蚁群优化
% ACO: ant colony optimization for solving the traveling salesperson problem
% Haupt & Haupt
% 2003
clear
rand('state',11)
Ncity=30; % number of citie
www.eeworm.com/read/241769/13121448
h improvedinsertsorter.h
//优化的插入排序类
#if !defined(AFX_ImprovedInsertSorter)
#define AFX_ImprovedInsertSorter
#include "InsertSorter.h"
template
class ImprovedInsertSorter:public Insert
www.eeworm.com/read/241769/13121567
h improvedquicksorter.h
//优化的快速排序类
#include "ImprovedInsertSorter.h"
#define THRESHOLD 16
template
class ImprovedQuickSorter:public Sorter
{
private:
int SelectPivot(int
www.eeworm.com/read/323605/13334231
h improvedinsertsorter.h
//优化的插入排序类
#if !defined(AFX_ImprovedInsertSorter)
#define AFX_ImprovedInsertSorter
#include "InsertSorter.h"
template
class ImprovedInsertSorter:public InsertSo
www.eeworm.com/read/402337/11536923
m pso.m
%------基本粒子群优化算法(Particle Swarm Optimization)-----------
function pg = PSO( void )
%--------声明全局---------------------------
global N;
global m;
global MaxDT;
global Qmax;
global Kmax;
global w
www.eeworm.com/read/256800/11971795
pas sumt_0.pas
unit sumt_0; //SUMT_优化算法封面
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, StdCtrls, MPlayer;
type
TFormfm = class(TForm)
Tim