代码搜索:Num
找到约 10,000 项符合「Num」的源代码
代码结果 10,000
www.eeworm.com/read/160929/10470151
m p6_2.m
% Program P6_2
% Parallel Form Realizations of an IIR Transfer
num = input('Numerator coefficient vector = ');
den = input('Denominator coefficient vector = ');
[r1,p1,k1] = residuez(num,den);
[r2,p
www.eeworm.com/read/160929/10470295
m00 !noisepw.m00
function nvar = noisepwr1(num,den)
% Computes the output noise variance due
% to input quantization of a digital filter
% based on a partial-fraction approach
%
% num and den are the numerator and den
www.eeworm.com/read/160929/10470305
m !noisepw.m
function nvar = noisepwr2(num,den)
% Computes the approximate output noise variance due
% to input quantization of a digital filter
% by summing the square of the impulse response samples
%
% num and
www.eeworm.com/read/160929/10470392
m p2_5.m
% Program P2_5
% Compute the impulse response y
clf;
N = 40;
num = [2.2403 2.4908 2.2403];
den = [1 -0.4 0.75];
y = impz(num,den,N);
% Plot the impulse response
stem(y);
xlabel('Time index n'); ylabel
www.eeworm.com/read/160929/10470471
m p8_4.m
% Program P8_4
num = remez(9, [0 0.3 0.5 1],[1 1 0 0]);
disp('Filter coefficients are ');disp(num);
impres = filter(num,1 ,[1 zeros(1,9)]);
disp('Actual filter coeffs are '); disp(impres);
www.eeworm.com/read/160929/10470476
m p8_1.m
% Program P8_1
Wp = [0.4 0.5]; Ws = [0.1 0.8]; Rp = 1; Rs = 30;
[N1, Wn1] = buttord(Wp, Ws, Rp, Rs);
[num,den] = butter(N1,Wn1);
disp('Numerator coefficients are ');disp(num);
disp('Denominator coeffi
www.eeworm.com/read/160872/10480063
sql 示例-事务.sql
CREATE TABLE 库存表
( 产品号 char(6) PRIMARY KEY,
产品名 char(10),
库存数量 int
)
CREATE TABLE 出库表
( 产品号 char(6),
出库日期 smalldatetime,
出库数量 int
)
GO
INSERT INTO 库存表 VALUES('01
www.eeworm.com/read/160872/10480067
sql 示例-触发器.sql
CREATE TABLE 库存表
( 产品号 char(6) PRIMARY KEY,
产品名 char(10),
库存数量 int
)
CREATE TABLE 出库表
( 产品号 char(6) REFERENCES 库存表(产品号),
出库日期 smalldatetime,
出库数量 int
)
GO
INSERT
www.eeworm.com/read/160872/10480096
sql 示例-存储过程.sql
CREATE TABLE 库存表
( 产品号 char(6) PRIMARY KEY,
产品名 char(10),
库存数量 int
)
CREATE TABLE 出库表
( 产品号 char(6) REFERENCES 库存表(产品号),
出库日期 smalldatetime,
出库数量 int
)
GO
INSERT
www.eeworm.com/read/160844/10486311
m mf2str.m
function s=mf2str(num);
%
% MF2STR is a function which convert a vektor or matrix
% in Matlab format to a string of one line
% Author: Ole Barup Sorensen, Rapid Data Ltd
% Copyright (