代码搜索:Generates
找到约 10,000 项符合「Generates」的源代码
代码结果 10,000
www.eeworm.com/read/360262/10105373
m tx_modulate.m
function mod_symbols = tx_modulate(bits_in, modulation)
full_len = length(bits_in);
% BPSK modulation
if ~isempty(findstr(modulation, 'BPSK'))
% Angle [pi/4 -3*pi/4] corresponds to
%
www.eeworm.com/read/163427/10162318
m tx_modulate.m
function mod_symbols = tx_modulate(bits_in, modulation)
full_len = length(bits_in);
% BPSK modulation
if ~isempty(findstr(modulation, 'BPSK'))
% Angle [pi/4 -3*pi/4] corresponds to
%
www.eeworm.com/read/355213/10285179
m tx_modulate.m
function mod_symbols = tx_modulate(bits_in, modulation)
full_len = length(bits_in);
% BPSK modulation
if ~isempty(findstr(modulation, 'BPSK'))
% Angle [pi/4 -3*pi/4] corresponds to
%
www.eeworm.com/read/354492/10349633
c alg16.c
#include
#include
class even_by_twos {
public:
even_by_twos( int seed = 0 ) : _seed( seed ){}
int operator()() { return _seed += 2; }
private:
int _seed;
};
templat
www.eeworm.com/read/424063/10499049
m multi_gp.m
function [x] = multi_gp(m,C)
% [x]=multi_gp(m,C)
% MULTI_GP generates a multivariate Gaussian random
% process with mean vector m (column vector), and covariance matrix C.
N=length(m);
for
www.eeworm.com/read/424063/10501455
m logic_mf.m
function lo=logic_mf(x,y);
%LOGIC_MF generates code for the combinatorial logic block.
% LO = LOGIC_MF(X,Y) generates logic operation vector LO,
% depending on the information provided in X
% ('AN
www.eeworm.com/read/423536/10552701
m multi_gp.m
function [x] = multi_gp(m,C)
% [x]=multi_gp(m,C)
% MULTI_GP generates a multivariate Gaussian random
% process with mean vector m (column vector), and covariance matrix C.
N=length(m);
for
www.eeworm.com/read/273359/10919248
bat asample.bat
REM This Batch-File generates a Sample-Program for the A51-Assembler
a51 asample1.a51 debug xref
a51 asample2.a51 debug xref
a51 asample3.a51 debug xref
bl51 asample1.obj,asample2.obj,asample3.
www.eeworm.com/read/272715/10946829
m tx_modulate.m
function mod_symbols = tx_modulate(bits_in, modulation)
full_len = length(bits_in);
% BPSK modulation
if ~isempty(findstr(modulation, 'BPSK'))
% Angle [pi/4 -3*pi/4] corresponds to
%
www.eeworm.com/read/270960/11017968
cpp genera2.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josuttis 19