代码搜索:zero

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

代码结果 10,000
www.eeworm.com/read/264889/11296389

cpp 3_34.cpp

#include #include using namespace std; struct complex { double real; double imag; }; int fun(unsigned n, int &zero) //完成统计功能的函数,引用作形参,传回统计结果 { int count=0,ma
www.eeworm.com/read/409260/11338505

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 ! 新的解
www.eeworm.com/read/408235/11401156

scm boyer.scm

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; File: boyer.sc ;;; Description: The Boyer benchmark ;;; Author: Bob Boyer ;;; Created: 5-Apr-85 ;;; Modified:
www.eeworm.com/read/405952/11452247

cmd 2-7.cmd

post.out -a -image -zero -memwidth 8 ROMS { Flash: org = 0, len = 0x3000,romwidth = 8, files = {post.hex} }
www.eeworm.com/read/403717/11512671

txt 凸包(graham).txt

// CONVEX HULL I // modified by rr 不能去掉点集中重合的点 #include #define eps 1e-8 #define zero(x) (((x)>0?(x):-(x))
www.eeworm.com/read/403011/11524279

cpp exceed.cpp

// exceed.cpp -- exceeding some integer limits #include #define ZERO 0 // makes ZERO symbol for 0 value #include // defines INT_MAX as largest int value int main() {
www.eeworm.com/read/403009/11524586

cpp exceed.cpp

// exceed.cpp -- exceeding some integer limits #include #define ZERO 0 // makes ZERO symbol for 0 value #include // defines INT_MAX as largest int value int main() {
www.eeworm.com/read/402476/11534312

v flagpro.v

module flagpro(sign,overflowalu,overflowmult,op,op2,aluop,multresH,aluresH,divresH,dif,overflow,aluzero,multzero,divzero,shiftzero,zero,pn); //标志位计算单元,在我们的设计中,设立了三个标志位,分别是overflow(溢出),zero(是否为0)和pn(符号
www.eeworm.com/read/402283/11539817

m repeat3.m

% repeat3.m % repeated value creation and counting %x = [3 2 0 5 6]; % data to repeat %n = [2 0 3 1 2]; % repeat counts nz = n==0; % locations of zero elements n(nz) = [];
www.eeworm.com/read/400753/11569458

txt 凸包(graham).txt

// CONVEX HULL I // modified by rr 不能去掉点集中重合的点 #include #define eps 1e-8 #define zero(x) (((x)>0?(x):-(x))