代码搜索:Generates
找到约 10,000 项符合「Generates」的源代码
代码结果 10,000
www.eeworm.com/read/313956/13578355
m primes.m
function p = primes(n)
%PRIMES Generates prime numbers.
% P = PRIMES(N) produces a row vector in P, which contains the prime
% numbers less than or equal to N.
%
% See also: ISP
www.eeworm.com/read/307931/13713088
v tb_eth_top.v
Please use tb_ethernet.v for testbench. Testbench will soon be
updated.
//////////////////////////////////////////////////////////////////////
`in
www.eeworm.com/read/307151/13727470
m triangular_signal.m
% TRIANG.M
%
% P. Flandrin, Mar. 13, 2003
%
% generates a triangular waveform
%
% inputs : - N : # of data samples
% - p : period
%
% output : - x : signal
function x = triang(N,p);
K
www.eeworm.com/read/302057/13843620
txt readme.txt
/******************** (C) COPYRIGHT 2007 STMicroelectronics ********************
* File Name : readme.txt
* Author : MCD Application Team
* Date First Issued : 05/21/2007
* D
www.eeworm.com/read/147682/5728068
m plot_invmodel.m
% plot_invmodel(w,h,e,D)
%
% Generates plots for evaluating the adaptive inverse
% modeling (equalization) problem.
%
% Input variables:
% w : estimated inverse model
% h : impulse r
www.eeworm.com/read/147682/5728104
m plot_echo.m
% plot_echo(w, x, r)
%
% Generates plots for evaluating an echo canceler simulation.
%
% Input arguments:
% w : The adaptive filter coefficient vector
% x : The microphone signal
%
www.eeworm.com/read/131315/5936411
x-fx2800
# The Alliant FX2800 is supposed to conform to the SysV R4 i860 ABI,
# but apparently the native compiler generates non ABI-compliant
# function prologues and epilogues, so we need the alloca from em
www.eeworm.com/read/255407/6291018
c alg24.c
// heap stuff -- need to merge
#include
#include
#include
template
void print_elements( Type elem ) { cout
www.eeworm.com/read/255407/6291033
c alg27.c
#include
#include
#include
#include
#include
template
void print_elements( Type elem ) { cout
www.eeworm.com/read/257423/6356487
m par_fn.m
% par_fn(t): This function generates a unit parabola function
%
function y = par_fn(t)
y = 0.5*t.^2.*stp_fn(t);