代码搜索:Sampling
找到约 3,969 项符合「Sampling」的源代码
代码结果 3,969
www.eeworm.com/read/429698/8793625
txt pre-distoration.txt
make_pulse_with_ballast.m
% 用于产生WCDMA 仿真信号源
close all
clear all
% Make a pulse
BufferSize = 2048;
BW = 2E6; % bandwidth in Hz
Fs = 125E6; % sampling rate
N = 2048;
IF_freq = Fs / BufferSize *
www.eeworm.com/read/427304/8952665
c receiver.c
//Receiver.c Demodulates received BPSK voice signal
#include "dsk6713_aic23.h" //codec-DSK support file
#include
Uint32 fs=DSK6713_AIC23_FREQ_96KHZ; //set sampling rate
#define NUM
www.eeworm.com/read/176583/9493309
m oct3dsgn.m
function [B,A] = oct3dsgn(Fc,Fs,N);
% OCT3DSGN Design of a one-third-octave filter.
% [B,A] = OCT3DSGN(Fc,Fs,N) designs a digital 1/3-octave filter with
% center frequency Fc for sampling fre
www.eeworm.com/read/160929/10469797
m p10_1.m
% Program 10_1
% Illustration of Up-Sampling by an Integer Factor
%
clf;
n = 0:50;
x = sin(2*pi*0.12*n);
y = zeros(1, 3*length(x));
y([1: 3: length(y)]) = x;
subplot(2,1,1)
stem(n,x);
title(
www.eeworm.com/read/423333/10569784
c c6416dskinit.c
//C6416dskinit.c Includes functions from TI in the C6416 CSL and C6416DSK BSL
#include "C6416dskinit.h"
#define using_bios //if BIOS don't use top of vector table
extern Uint32 fs; //for sampling
www.eeworm.com/read/439446/7708598
m p10_1.m
% Program 10_1
% Illustration of Up-Sampling by an Integer Factor
%
clf;
n = 0:50;
x = sin(2*pi*0.12*n);
y = zeros(1, 3*length(x));
y([1: 3: length(y)]) = x;
subplot(2,1,1)
stem(n,x);
title(
www.eeworm.com/read/300983/13873474
m sine.m
% Creat a data file of the sinewave, which DSP chip can load .%
clear all;
Fs=8000; %Sampling Frequecy of AD535 chip=8KHz%
f1=100; %Frequency of Sine Wave"
y=10*sin(2*pi*f1*[0: 1023]/Fs); % Numbe
www.eeworm.com/read/403922/11499735
html function.imagick-setsamplingfactors.html
Sets the image sampling factors
www.eeworm.com/read/403922/11505197
html function.imagick-sampleimage.html
Scales an image with pixel sampling
www.eeworm.com/read/157765/11665811
m p102.m
%program p102
fs1 = 10; % Original sampling frequency in Hz
t1 = 0:1/fs1:1; % Time vector
x = t1; % Define a linear sequence
y = resample(x,3,2); % Now resample it
t2