代码搜索:Sampling
找到约 3,969 项符合「Sampling」的源代码
代码结果 3,969
www.eeworm.com/read/490882/6445100
m simulation_data.m
clc;
clear;
% 仿真参数:
% Pow = -30; % average transmitted power (dBm)
% fc = 50e9; % sampling frequency
% numbits =1000; % number of bits generated by the source
% Ts = 50e-9;
www.eeworm.com/read/489084/6482582
m ip_07_01.m
% MATLAB script for Illustrated Problem 7.1.
echo on
T=1;
delta_T=T/200; % sampling interval
alpha=0.5; % rolloff factor
fc=40/T; % carrier frequency
A_m=1;
www.eeworm.com/read/485544/6552653
m hmc.m
function [samples, energies, diagn] = hmc(f, x, options, gradf, varargin)
%HMC Hybrid Monte Carlo sampling.
%
% Description
% SAMPLES = HMC(F, X, OPTIONS, GRADF) uses a hybrid Monte Carlo
% algorithm
www.eeworm.com/read/485544/6552758
m demmet1.m
function demmet1(plot_wait)
%DEMMET1 Demonstrate Markov Chain Monte Carlo sampling on a Gaussian.
%
% Description
% The problem consists of generating data from a Gaussian in two
% dimensions using a
www.eeworm.com/read/264746/11303020
m prog7b4a.m
%
% Program name - prog7b4a.m
% m-file for calculating the optimal FIR filter coefficients
% and plotting frequency response for Example 7B.4
%
Fs=50000; % Sampling frequency %
www.eeworm.com/read/405217/11468661
m gaussfilt.m
% GAUSSFILT Design a Gaussian Low-Pass Filter
%
% [B, A] = GAUSSFILT(BW, N)
% BW is the 3-dB bandwidth with 1.0 being 1/2 the
% sampling frequency. N is the number of taps.
%
%
function
www.eeworm.com/read/154760/11928683
m alias.m
function [fa,fd] = alias(f,fs)
% ALIAS Compuation of aliased frequencies.
%
% [FA,FD] = ALIAS(F,FS) Computes aliased frequencies
% F = frequency array in HERTZ, FS = sampling frequency in HERTZ.
www.eeworm.com/read/342767/11999672
m adsgn.m
function [B,A] = adsgn(Fs);
% ADSGN Design of a A-weighting filter.
% [B,A] = ADSGN(Fs) designs a digital A-weighting filter for
% sampling frequency Fs. Usage: Y = FILTER(B,A,X).
% Warni
www.eeworm.com/read/342767/11999673
m cdsgn.m
function [B,A] = cdsgn(Fs);
% CDSGN Design of a A-weighting filter.
% [B,A] = CDSGN(Fs) designs a digital A-weighting filter for
% sampling frequency Fs. Usage: Y = FILTER(B,A,X).
% Warni
www.eeworm.com/read/152406/12116828
m gaussfilt.m
% GAUSSFILT Design a Gaussian Low-Pass Filter
%
% [B, A] = GAUSSFILT(BW, N)
% BW is the 3-dB bandwidth with 1.0 being 1/2 the
% sampling frequency. N is the number of taps.
%
%
function