代码搜索:Generates

找到约 10,000 项符合「Generates」的源代码

代码结果 10,000
www.eeworm.com/read/470396/6909905

m stepseq.m

function[x,n]=stepseq(n0,n1,n2) %单位阶跃序列 %generates x(n)=u(n-n0);n1
www.eeworm.com/read/467324/7009701

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/299984/7139923

m lines5d.m

%LINES5D Generates three 5-dimensional lines % % A = LINES5D(N); % % Generates a data set of N points, on 3 non-crossing, non-parallel lines % in 5 dimensions. % % If N is a vector of sizes, exactly
www.eeworm.com/read/463748/7176034

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/462739/7196834

h realinit.h

/*This is the file which initializes the population*/ void realinit(population *pop_ptr); void realinit(population *pop_ptr) { int i,j,r,d2; float d,d1; for (i = 0 ; i < popsize ; i++) {
www.eeworm.com/read/461152/7232539

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/460676/7243540

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/460435/7250398

m lines5d.m

%LINES5D Generates three 5-dimensional lines % % A = LINES5D(N); % % Generates a data set of N points, on 3 non-crossing, non-parallel lines % in 5 dimensions. % % If N is a vector of sizes, exactly
www.eeworm.com/read/456354/7351378

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 i=1:
www.eeworm.com/read/454938/7381262

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