代码搜索:zero

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

代码结果 10,000
www.eeworm.com/read/128468/14295435

m ecov.m

function [V,eigv]=ecov(X) % ECOV returns non-zero eigenvectors of cov(X). % [V,eigv]=ecov(X) % % This function uses one-to-one correspondence between % non-zero eigenvalues and eigenevectors of matri
www.eeworm.com/read/228652/14371563

m triu.m

function P = triu(P,varargin) % TRIU -- set lower triangle in matrix polynomial to zero % % P = triu(P) % P = triu(P,k) % % Set all values below the kth diagonal to zero. This ex
www.eeworm.com/read/227721/14416659

txt note.txt

** 1)增加写字楼房号,宿舍房号,单位去掉 ** 3)大厦名称加在报表里 ** 4)备注重复,每一项都要不同 *********** 6)列表中写字楼租金前加滞率 ** 2)报表合计金额生成大写,加币别 ** 7)交租日期要从报表中体现出来 ** 8)统收编号报表打印时自动生成7位数 **
www.eeworm.com/read/227351/14430640

asm c2_7_1.asm

.def start start: mvk 31,b0 ZERO A2 ZERO A3 MVKL 0FFFEH,A4 MVKLH 0FFFFH,A4 MVKL 2,A0 MVKL
www.eeworm.com/read/226029/14502976

txt pcb钻孔基础介绍.txt

PCB钻孔基础介绍 一、钻孔档(Drill File)介绍 常见钻孔及含义: PTH - 镀通孔:孔壁镀覆金属而用来连接中间层或外层的导电图形的孔。 NPTH - 非镀通孔:孔壁不镀覆金属而用于机械安装或机械固定组件的孔。 VIA - 导通孔:用于印制板不同层中导电图形之间电气连接(如埋孔、盲孔等),但不能插装组件引腿或其它增强材料的镀通孔。 ...
www.eeworm.com/read/225618/14530077

h seg.h

#ifndef _ASM_SEGMENT_H #define _ASM_SEGMENT_H #define NULLIDX 0 #define KCODEIDX 1 #define KDATAIDX 2 #define LDTIDX 3 #define TSS0IDX 4 #define TSS1IDX 5 #define NULLSEL (NULLIDX
www.eeworm.com/read/222288/14697938

m steff.m

function [p,Q]=steff(f,df,p0,delta,epsilon,max1) %Input - f is the object function % - df is the derivative of f input as a string 'df' % - p0 is the initial approximation to
www.eeworm.com/read/221997/14712442

asm 3100_2interface.asm

;================================================================================================== ; ; Include Definitions ; ;=========================================================
www.eeworm.com/read/221925/14714152

h stdafx.h

// stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #if !defined(AFX_STDAFX_H__2
www.eeworm.com/read/221870/14716521

f90 secant.f90

module NUMERICAL implicit none real, parameter :: zero=0.00001 ! 小于zero的值会被当成0 contains ! 割线法的函数 real function secant(a,b,f) implicit none real :: a,b ! 起始的两个猜值 real :: c ! 新的解