代码搜索:Num
找到约 10,000 项符合「Num」的源代码
代码结果 10,000
www.eeworm.com/read/388457/8608043
m noisepwr2.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
www.eeworm.com/read/388457/8608063
m noisepwr1.m
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 an
www.eeworm.com/read/388457/8608140
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'
www.eeworm.com/read/388457/8608178
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/388457/8608179
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 c
www.eeworm.com/read/388422/8610947
m chap3_1.m
%Expert PID Controller
clear all;
close all;
ts=0.001;
sys=tf(5.235e005,[1,87.35,1.047e004,0]);
dsys=c2d(sys,ts,'z');
[num,den]=tfdata(dsys,'v');
u_1=0.0;u_2=0.0;u_3=0.0;
y_1=0;y_2=0;y_3=0
www.eeworm.com/read/187651/8612396
txt readme.txt
========================================================================
CONSOLE APPLICATION : 8_num
========================================================================
AppWizard ha
www.eeworm.com/read/432253/8617755
cpp equation3-2-2.cpp
#include
using namespace std;
int main()
{
string input;
cout > input;
string tmp;
int value = 0;
int sign = 1;
www.eeworm.com/read/432253/8617824
cpp assignment5-1-2.cpp
#include
using namespace std;
bool isPrime(int num);
int main()
{
int c = 0;
int num = 2;
for(num = 2; c < 100; ++num)
{
if (isPrime(num))
{
www.eeworm.com/read/432247/8617919
cpp assignment4-2-1-multiply.cpp
#include
using namespace std;
int main()
{
int num1,num2;
int ans = 0;
cout > num1;
cout