代码搜索:Generates

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

代码结果 10,000
www.eeworm.com/read/218840/14904594

m contents.m

% Higher-Order Spectral Analysis Toolbox. % Version 2.0.3 (R12 compliant) 27 Dec 2000 % % New Features. % Readme - Important release information about the HOSA Toolbox %
www.eeworm.com/read/216698/14997365

m contents.m

% Higher-Order Spectral Analysis Toolbox. % Version 2.0.3 (R12 compliant) 27 Dec 2000 % % New Features. % Readme - Important release information about the HOSA Toolbox %
www.eeworm.com/read/208476/15246700

m prs.m

function prsout = prs(N,maxval,alpha) % PRS % prsout = prs(N,maxval,alpha) % generates a "level change at random instances" signal. % The signal is defined in the following way: %
www.eeworm.com/read/206661/15292446

m contents.m

% Higher-Order Spectral Analysis Toolbox. % Version 2.0.3 (R12 compliant) 27 Dec 2000 % % New Features. % Readme - Important release information about the HOSA Toolbox %
www.eeworm.com/read/167075/5469640

readme

There is a ppro flag in cast-586 which turns on/off generation of pentium pro/II friendly code This flag makes the inner loop one cycle longer, but generates code that runs %30 faster on the pentium
www.eeworm.com/read/474588/6813309

m iterate.m

function [xvec,yvec]=iterate(xx) % [xvec,yvec]=iterate(xx) % Generates x and y vectors for plotting an iterated map % xx is the sequence of data points for the iterated map nx=length(xx); vec=zer
www.eeworm.com/read/172473/9706235

m fib.m

function y=fib(n) %Generates fibonacci numbers for the program fibonacci fz(1)=1;fz(2)=1; for k=3:n fz(k)=fz(k-1)+fz(k-2); end y=fz(n);
www.eeworm.com/read/148257/12479788

m achecker.m

function A=achecker(n) % The command A=achecker(n) generates an nxn matrix A % whose entries alternate between 1 and 0. Specifically % C(i,j)=1 if i+j is odd, otherwise C(i,j)=0. This matrix % is simi
www.eeworm.com/read/148257/12479839

m ymatrix.m

function Y=Ymatrix(n) % The command Y = Ymatrix(n) generates an nxn % matrix of 0's and 1's in the form of the % letter. The input argument n must be an odd % integer. if rem(n,2)==0 error('T
www.eeworm.com/read/148257/12479852

m cyclic.m

function C=cyclic(n) % The command cyclic(n) generates an nxn matrix % with 1's on the diagonal just above the main % diagonal and a 1 in the lower left hand corner. % The remaining entries of th