代码搜索:Generates
找到约 10,000 项符合「Generates」的源代码
代码结果 10,000
www.eeworm.com/read/365309/9870115
vhd sequencer.vhd
-- Altera Microperipheral Reference Design Version 0802
--**********************************************************************************************
--
-- System: A8237
-- Component: Sequenc
www.eeworm.com/read/364310/9912878
m fig2_3.m
%This program generates Figure 2.3.
close all
clear all
logpfa = linspace(.01,250,1000);
var = 10.^(logpfa ./ 10.0);
vtnorm = sqrt( log (var));
semilogx(logpfa, vtnorm,'k')
grid
www.eeworm.com/read/168263/9926835
txt directives.txt
=====.ASCIS
Directive defining values of single bytes using passed string argument. Last byte has toggled (XOR-ed) most significant bit.
Syntax:
[[:]] .ASCIS | txtexpr { ,
www.eeworm.com/read/363804/9935695
m cp0201_th.m
%
% FUNCTION 2.3 : "cp0201_TH"
%
% Generates a pseudorandom Time Hopping code
% with periodicity 'Np' and cardinality 'Nh'
%
% Programmed by Guerino Giancola
%
function [THcode]=cp0201_TH(Nh
www.eeworm.com/read/363804/9935699
m cp0201_bits.m
%
% FUNCTION 2.1 : "cp0201_bits"
%
% Generates a stream of equiprobable binary values ('bits')
% The number of bits ('numbits') is an input parameter
%
% Programmed by Guerino Giancola
%
fun
www.eeworm.com/read/167466/9968289
m chan.m
function [x] = chan(h,N)
% noise shaping filter for fig8_12.M
% Generates N samples of a coloured o/p signal of FIR filter h
% July 97
M = max(size(h));
mag = sqrt(h*h');
h = h/mag;
y = randn
www.eeworm.com/read/167116/9980433
m fibonacci.m
function f = fibonacci(n)
%FIBONACCI Fibonacci sequence
% f = FIBONACCI(n) generates the first n Fibonacci numbers.
f = zeros(n,1);
f(1) = 1;
f(2) = 2;
for k = 3:n
f(k) = f(k-1) + f(k-2);
end
www.eeworm.com/read/362246/10010456
m contents.m
% Probability distribution functions.
%
% estimation - (dir) Probability distribution estimation.
%
% dsamp - Generates samples from discrete distribution.
% erfc2 - Normal cumulative dis
www.eeworm.com/read/359237/10160221
m cp0201_th.m
%
% FUNCTION 2.3 : "cp0201_TH"
%
% Generates a pseudorandom TH code
% with periodicity 'Np' and cardinality 'Nh'
%
% Programmed by Guerino Giancola
%
function [THcode]=cp0201_TH(Nh,Np);
%