代码搜索:2
找到约 10,000 项符合「2」的源代码
代码结果 10,000
www.eeworm.com/read/216722/14995572
m basicseq.m
% the basic codes from the generating poly from the book spread spectrum applications on commercial systems
function[code1, code2] = BasicSeq(m)
N = 2^m - 1;
sreg = [0, 0, 1, 1, 0, 1, 1, 0, 0
www.eeworm.com/read/215382/15062532
m viewmtx546.m
function viewmtx546
x = [0 1 1 0 0 0 1 1 0 0 1 1 1 1 0 0];
y = [0 0 1 1 0 0 0 1 1 0 0 0 1 1 1 1];
z = [0 0 0 0 0 1 1 1 1 1 1 0 0 1 1 0];
A = viewmtx(
www.eeworm.com/read/215321/15065347
m ch2_3_1.m
%添加颜色条
RGB = imread('saturn.png');
I = rgb2gray(RGB);
h = [1 2 1; 0 0 0; -1 -2 -1];
I2 = filter2(h,I);
imshow(I2,[]), colorbar('vert')
www.eeworm.com/read/212907/15145458
m qiebixuefu.m
% 由低通数字变换为高通数字频带的变换示例
ws = [0.4*pi, 0.7*pi]; % 数字阻带边缘频率
wp = [0.25*pi, 0.8*pi]; % 数字通带边缘频率
Rp = 1; % 通带波动(dB)
As = 40;
www.eeworm.com/read/159608/5582329
m rbf_dot.m
function dpt = rbf_dot(data1, data2, sigma2)
%RBF_DOT Compute dot product table
% rbf_dot2(data1, data2)
% the first argument is required, the second one is optional
% if only one argument is pa
www.eeworm.com/read/159608/5582333
m rbf_dot.m
function dpt = rbf_dot(data1, data2, sigma2)
%RBF_DOT Compute dot product table
% rbf_dot2(data1, data2)
% the first argument is required, the second one is optional
% if only one argument is pa
www.eeworm.com/read/159608/5582335
m rbf_dot (1).m
function dpt = rbf_dot(data1, data2, sigma2)
%RBF_DOT Compute dot product table
% rbf_dot2(data1, data2)
% the first argument is required, the second one is optional
% if only one argument is pa
www.eeworm.com/read/154100/5642060
v black_box.v
// Black box declearation for synplify pro
module XOR2(I0,I1,O);
input I0,I1;
output O;
endmodule
module OR2(I0,I1,O);
input I0,I1;
output O;
endmodule
module AND2(I0,I1,O);
input I0
www.eeworm.com/read/154100/5642089
v black_box.v
// Black box declearation for synplify pro
module XOR2(I0,I1,O);
input I0,I1;
output O;
endmodule
module OR2(I0,I1,O);
input I0,I1;
output O;
endmodule
module AND2(I0,I1,O);
input I0
www.eeworm.com/read/173659/9644755
m hc861.m
%《数字信号处理教程——MATLAB释义与实现》第八章例8.6.1程序hc861
% 由低通数字变换为高通数字频带的变换示例
% 电子工业出版社出版 陈怀琛编著 2004年9月
%
ws = [0.4*pi, 0.7*pi]; % 数字阻带边缘频率
wp = [0.25*pi, 0.8*pi]; % 数字通带边缘频率