代码搜索:Sampling
找到约 3,969 项符合「Sampling」的源代码
代码结果 3,969
www.eeworm.com/read/482197/6629268
txt sine.txt
% Creat a data file of the sinewave, which DSP chip can load .%
clear all;
Fs=44100; %Sampling Frequecy of AIC23=44.1KHz%
f1=500; %Frequency of Sine Wave"
for m=1:2048;
x=sin(2*pi*f1*[0: 2048
www.eeworm.com/read/481728/6637466
c mdecint.c
#include
#include
#include
#include "msp.h"
void mdecint(float x[],float h[],float y[],int nh,int ny,int m,
int l,int *k)
{
/*-------------------------------------
www.eeworm.com/read/480415/6663553
m demothree.m
%% Sampling & Signal Operations
%% Sampling
t1=[0:1/6:2];
x1=cos(2*pi*3*t1);
t2=[0:1/10:2];
x2=cos(2*pi*5*t2);
t3=[0:1/24:2];
x3=cos(2*pi*3*t3);
t4=[0:1/10:2];
x4=cos(2*pi*3*t4);
t5=[0:
www.eeworm.com/read/480323/6672526
m arma_ls.m
function [a,Rx,fLS]=ARMA_LS(M,x,p,varargin)
%p=4;
[Q,N]=size(x);
%M=100;
%n=1:N;
%sampling=100;
%fls=zeros(sampling,2);
%for k=1:sampling
% w=randn(size(n));
% x = sqrt(20)*sin(2*pi
www.eeworm.com/read/478401/6716196
m demo2_01.m
%
% Demonstrates performance of a fixed-gain estimator as a function of gain
%
% Applied to random walk process with gaussian sampling noise
%
clear all;
close all;
N = 1000; % Number of sa
www.eeworm.com/read/476907/6754368
m loweq.m
function xl=loweq(x,ts,f0)
% xl=loweq(x,ts,f0)
%LOWEQ returns the lowpass equivalent of the signal x
% f0 is the center frequency.
% ts is the sampling interval.
%
t=[
www.eeworm.com/read/476907/6754432
m test.m
t0=.15; % signal duration
ts=0.001; % sampling interval
% the message vector
m=[ones(1,t0/(3*ts)),-2*ones(1,t0/(3*ts)),zeros(1,t0/(3*ts)+1)];
m_hat=imag(hil
www.eeworm.com/read/264747/11302916
m prog83.m
%
% Program 8.3, p512. m-file for the design of the BZT filter
% (Example 8.19)
% program name: prog83.m
%
Fs=1000; % sampling frequency
FN=Fs/2;
fc=300; % cutoff frequency
N=5;
www.eeworm.com/read/405084/11472037
m fig3_8.m
% Use this program to reproduce Fig. 3.8 of text
close all
clear all
eps = 0.000001;
%Enter pulse width and bandwidth
B = 200.0e6; %200 MHZ bandwidth
T = 10.e-6; %10 micro second pulse;
% Compu
www.eeworm.com/read/402283/11539730
m mm2201.m
% mm2201.m
N = 128; % choose a power of 2 for speed
t = linspace(0,3,N); % time points for function evaluation
f = 2*exp(-3*t); % evaluate the function and minimize aliasing: f(3) ~ 0
Ts = t(2)