代码搜索:Num
找到约 10,000 项符合「Num」的源代码
代码结果 10,000
www.eeworm.com/read/428167/8886078
m readlab.m
function [qs,zz,num]=readlab(file)
fid=fopen(file,'r','b');
if fid < 0
error(sprintf('Cannot read from file %s',file));
end
F= fread(fid,'uchar');
j=1;
for i=1:4
b=0;
while F
www.eeworm.com/read/186987/8886141
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/186987/8886155
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/186987/8886208
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/186987/8886240
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/186987/8886241
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/186973/8887182
m c138.m
A=[0 1;-1/6 5/6]; B=[0; 1]; C=[-1 5]; D=0;
[num,den]=ss2tf(A,B,C,D);
k=0:25;
u=ones(1:length(k));
y=filter(num,den,u);
stem(k,y)
www.eeworm.com/read/186954/8888969
java card.java
package com.ddpie;
import java.awt.*;
public class Card{
private int num;//牌号 从1到13
private int color;//牌色 从1到4 依次表示 黑桃 红桃 梅花 方片
private int img;//这张牌所对应img的序号
public Card(int num,int
www.eeworm.com/read/284811/8889566
cpp addresslist.cpp
#define N 5
#include
#include
#include
void myprint();
void mycreat(char numtel[N][10], char nametel[N][10], char tel[N][10]);
//void mycreat() {}
void mydisplay(
www.eeworm.com/read/284777/8899797
m chapter10_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