代码搜索:模式匹配
找到约 10,000 项符合「模式匹配」的源代码
代码结果 10,000
www.eeworm.com/read/300378/13916774
m program_13_16.m
% 当前延拓模式是补零
% 装载原始图像
load belmont2;
% X 包含原始图像
x=X(100:200,100:200);
nbc = size(map,1);
subplot(221),image(x),colormap(map);
axis square;
title('原始图像');
% 使用wdencmp 进行图像压缩
% 得到x的小波分解结构
n
www.eeworm.com/read/300378/13916872
m program_11_01.m
% 当前延拓模式是补零
% 装载原始图像
load woman;
% X 包含装载的图像
% 使用db1对X进行尺度为2时的小波分解
[c,s] = wavedec2(X,2,'db1');
% 分解结构
sizex = size(X)
sizec = size(c)
val_s = s
www.eeworm.com/read/300378/13916974
m program_10_09.m
% 当前扩展模式是补零(参见dwtmode函数)
% 低频信号由1~6层系数获得
cfs = [1];
essup = 10;
figure(1)
for i=1:6
rec = upcoef('a',cfs,'db6',i);
% essup 是重构信号必须的
% 当j等于essup时,rec(j) 非常小
ax = subplot(6
www.eeworm.com/read/236685/14003326
c uarttest.c
//uart functions
#include "2407REGS.h"
#include "2407uart.h"
void UartInit()
{
*SCICCR=SCIDAT_LENGTH8;//1个停止位,不使能奇偶校验,空闲线多处理
//器模式,8位字符
*SCICTL1=TX_ENA + RX_ENA; //使能接收和
www.eeworm.com/read/235003/14089226
m examp13_5.m
clc;
clear;
% 当前的延拓模式是补零
% 产生高斯白噪声
init = 2055415866; randn('seed',init);
x = randn(1,1000);
% 寻找各个阈值选择规则的阈值
% 使用SURE的自适应阈值
thr1 = thselect(x,'rigrsure')
% 固定形式阈值
thr2 = thselect(x,'sqtwol
www.eeworm.com/read/235003/14089251
m examp13_16.m
% 当前延拓模式是补零
% 装载原始图像
load belmont2;
% X 包含原始图像
x=X(100:200,100:200);
nbc = size(map,1);
subplot(221),image(x),colormap(map);
axis square;
title('原始图像');
% 使用wdencmp 进行图像压缩
% 得到x的小波分解结构
n
www.eeworm.com/read/235001/14089295
m 例程11-1.m
% 当前延拓模式是补零
% 装载原始图像
load woman;
% X 包含装载的图像
% 使用db1对X进行尺度为2时的小波分解
[c,s] = wavedec2(X,2,'db1');
% 分解结构
sizex = size(X)
sizec = size(c)
val_s = s
www.eeworm.com/read/234999/14089370
m exam10_12.m
clc;
clear;
% 当前的延拓模式是补零(参见dwtmode函数)
% 装载原始一维信号
load sumsin; s = sumsin;
% 使用db1执行3层小波分解
[c,l] = wavedec(s,3,'db1');
subplot(311); plot(s);
title('原始信号s.');
subplot(312); plot(c);
titl
www.eeworm.com/read/234999/14089376
m exam10_9.m
clc;
clear;
% 当前扩展模式是补零(参见dwtmode函数)
% 低频信号由1~6层系数获得
cfs = [1];
essup = 10;
figure(1)
for i=1:6
rec = upcoef('a',cfs,'db6',i);
% essup 是重构信号必须的
% 当j等于essup时,rec(j) 非常小