代码搜索:zero

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

代码结果 10,000
www.eeworm.com/read/220661/14793495

html timeseriesdemo12.html

TimeSeriesDemo12 This demo shows a series with all zero values - it is only visible because the Stroke has been set to a width of 2.0. This highlights a limitation in the
www.eeworm.com/read/220447/14800254

txt vander.txt

procedure VANDER(X:array of real;var W:array of real; Q:array of real; N:integer); const NMAX = 100; ZERO = 0; ONE = 1; var C:array[0..100] of rea
www.eeworm.com/read/220370/14802670

m extr.m

%EXTR finds extrema and zero-crossings % % [indmin, indmax, indzer] = EXTR(x,t) % % inputs : - x : analyzed signal % - t (optional) : sampling times, default 1:length(x) % % outputs : - indm
www.eeworm.com/read/218613/14912835

m singlet.m

%singlet Defines a singlet state. % singlet(n) gives the state vector for an n-qubit singlet state. % (This is a state with zero total angular momentum.) % If argument n is omitted than the
www.eeworm.com/read/217040/14981894

pas julday.pas

FUNCTION julday(mm,id,iyyy: integer): integer; CONST igreg=588829; VAR ja,jm,jy,jul: integer; BEGIN IF (iyyy = 0) THEN BEGIN writeln('there is no year zero.'); readln; END;
www.eeworm.com/read/216045/15028161

m wnyqui.m

function wnyqui(alpha,action) %impulse response and Fourier transform of root-raised-cosine pulse warning off; % avoid devide by zero warning if nargin == 0 alpha = .5; end; if isstr(alpha) a
www.eeworm.com/read/215601/15057032

m compoversamp.m

% Program 3-8 % compoversamp.m % % Insert zero data to Ich and Qch input data % % programmed by H.Harada % function [iout,qout] = compoversamp( idata, qdata , nsymb , sample) %***********
www.eeworm.com/read/214366/15104726

vhd reg.vhd

-- reg.vhd -- This module implements a 16-bit general purpose register. The contents of -- register is loaded on the rising edge of "clk". It is cleared to zero when -- "reset" is asserted low. T
www.eeworm.com/read/214301/15107057

m extr.m

%EXTR finds extrema and zero-crossings % % [indmin, indmax, indzer] = EXTR(x,t) % % inputs : - x : analyzed signal % - t (optional) : sampling times, default 1:length(x) % % outputs : - indm
www.eeworm.com/read/210671/15193637

cpp fig04_13.cpp

// Fig. 4.13: fig04_13.cpp // Static arrays are initialized to zero #include using std::cout; using std::endl; void staticArrayInit( void ); void automaticArrayInit( void ); in