代码搜索:zero

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

代码结果 10,000
www.eeworm.com/read/450886/7475248

c 10-10.c

#include < stdio.h> typedef int Type; typedef int T; typedef struct BiTNode { Type data; struct BiTNode *lchild,*rchild; }binarytree; typedef struct Huffmannode{ binarytree tr
www.eeworm.com/read/448866/7524423

asm divide.asm

.SEGMENT/PM pm_rsti; { The reset vector resides in this space } DMWAIT=0x21; { Set data memory waitstates to zero } PMWAIT=0x21; { Set program memory waitstates to zero } JUMP start; .ENDSEG
www.eeworm.com/read/448259/7535880

m dir2latc.m

function [K]=dir2latc(b) %[K]=dir2latc(b); %K=格型滤波器的系数矩阵 %b=FIR滤波器的直接形式系数矩阵 M=length(b); K=zeros(1,M); b1=b(1); if b1==0 error('b(1) is equal to zero') end K(1)=b1;A=b/b1; for m=M:-1:2
www.eeworm.com/read/448245/7536038

m sgn.m

function y = sgn(x) %SGN Modified signum function. % For each element of X, SIGN(X) returns 1 if the element % is greater than or equal to zero, and -1 if it is % less than zero. % % S
www.eeworm.com/read/448199/7538330

c 10-10.c

#include < stdio.h> typedef int Type; typedef int T; typedef struct BiTNode { Type data; struct BiTNode *lchild,*rchild; }binarytree; typedef struct Huffmannode{ binarytree tr
www.eeworm.com/read/447462/7550754

f dznrm2.f

DOUBLE PRECISION FUNCTION DZNRM2(N,X,INCX) * .. Scalar Arguments .. INTEGER INCX,N * .. * .. Array Arguments .. DOUBLE COMPLEX X(*) * .. * * Purpose * ======= * *
www.eeworm.com/read/447462/7550777

f snrm2.f

REAL FUNCTION SNRM2(N,X,INCX) * .. Scalar Arguments .. INTEGER INCX,N * .. * .. Array Arguments .. REAL X(*) * .. * * Purpose * ======= * * SNRM2 returns the eucli
www.eeworm.com/read/447462/7550818

f scnrm2.f

REAL FUNCTION SCNRM2(N,X,INCX) * .. Scalar Arguments .. INTEGER INCX,N * .. * .. Array Arguments .. COMPLEX X(*) * .. * * Purpose * ======= * * SCNRM2 returns the
www.eeworm.com/read/446347/7581106

m ex1_1.m

%example1_1 %unit sample sequence clear all; N=32; x=zero(1,N); x(1)=1; xn=0:N-1; stem(xn,x) axis([-1 33 0 1.1])
www.eeworm.com/read/446347/7581108

m ex1_2.m

%example1-2 %unit sample sequence clear all; N=32; K=20; x=zero(1,N); x(k)=1; xn=0:N-1; stem(xn,x) axis([-1 33 0 1.1])