代码搜索:IP
找到约 10,000 项符合「IP」的源代码
代码结果 10,000
www.eeworm.com/read/176393/9500285
c get_ip_code.c
/* 文件名字:get_ip_code.c */
#include "pcap.h"
/*
-----------------------------------------------------------------------------------------------------------------------
Libpcap头文件 ;
下面是以太网协议格式
----
www.eeworm.com/read/176301/9507796
gif tyi86_ip.gif
www.eeworm.com/read/371748/9537841
m ip_06_04.m
% MATLAB script for Illustrative Problem 6.4.
clear
echo on
Length=101;
Fs=10000;
W=2000;
Ts=1/Fs;
n=-(Length-1)/2:(Length-1)/2;
t=Ts*n;
h=2*W*sinc(2*W*t);
% The rectangular windowed
www.eeworm.com/read/371748/9537844
m ip_06_05.m
% MATLAB script for Illustrative Problem 5, Chapter 6.
clear
echo on
p=0.99;
N=1000;
d=5;
% The filter is described by the vectors A and B below...
A=[1 -2*p p^2];
B=(1-p)^2;
for i=1:N,
[
www.eeworm.com/read/371748/9537847
m ip_06_06.m
% MATLAB script for Illustrative Problem 6, Chapter 6.
clear
echo on
N=52;
noise_var=0.25;
sigma=sqrt(noise_var); % standard deviation of the noise
for i=1:N, % generate data sequence
www.eeworm.com/read/371748/9537850
m ip_06_08.m
% MATLAB script for Illustrative Problem 6.8.
clear
echo on
N=31;
T=1;
W=1/(2*T);
n=-(N-1)/2:(N-1)/2; % the indices for g_T
% The expression for g_T is obtained next.
for i=1:length(n),
g
www.eeworm.com/read/371748/9537853
m ip_06_01.m
% MATLAB script for Illustrative Problem 6.1.
clear
echo on
T=1;
delta_f=1/(100*T);
f=-5/T:delta_f:5/T;
sgma_a=1;
Sv=sgma_a^2*sinc(f*T).^2;
% Plotting command follows.
plot(f,Sv);
www.eeworm.com/read/371748/9537857
m ip_06_12.m
% MATLAB script for Illustrative Problem 6.12.
clear
echo on
N=500; % length of the information sequence
K=5;
actual_isi=[0.05 -0.063 0.088 -0.126 -0.25 0.9047 0.25 0 0.126 0.038 0.088
www.eeworm.com/read/371748/9537860
m ip_06_10.m
% MATLAB script for Illustrative Problem 6.10.
clear
echo on
T=1;
Fs=2/T;
Ts=1/Fs;
c_opt=[-2.2 4.9 -3 4.9 -2.2];
t=-5*T:T/2:5*T;
x=1./(1+((2/T)*t).^2); % sampled pulse
equalized_x
www.eeworm.com/read/371748/9537863
m ip_06_09.m
% MATLAB script for Illustrative Problem 6.9.
clear
echo on
d=[1 1 1 0 1 0 0 1 0 0 0 1];
p(1)=0;
for i=1:length(d)
p(i+1)=rem(p(i)+d(i),2);
echo off ;
end
echo on ;
a=2.*p-1;
b(1)=0;
d