代码搜索:zero
找到约 10,000 项符合「zero」的源代码
代码结果 10,000
www.eeworm.com/read/469371/6974227
cc 2841973_ac_15ms_172k.cc
#include
#include
#define zero 1e-6
typedef long long l64;
int powb(l64 t,l64 x)
{
if(2==t%4)
return 1;
int b=2,p=1,a=1;
if(t%5==2||t%5==3||x
www.eeworm.com/read/469416/6976442
m gmmpost.m
function [post, a] = gmmpost(mix, x)
%GMMPOST Computes the class posterior probabilities of a Gaussian mixture model.
%
% Description
% This function computes the posteriors POST (i.e. the probabi
www.eeworm.com/read/465231/7059672
m makeparitychk.m
function [c, newH] = makeParityChk(dSource, H, strategy)
% Generate parity check vector bases on LDPC matrix H using sparse LU decomposition
%
% dSource : Binary source (0/1)
% H : LDPC ma
www.eeworm.com/read/166571/7095806
hpp accumtraits4.hpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde
www.eeworm.com/read/140797/7147180
h diverr.h
static inline void __divide_error(void)
{
asm volatile("int $0"); /* Divide by zero */
}
www.eeworm.com/read/464546/7156196
c lstring.c
/////////////////////////////////////////////////////////////////////////////////
// Copyright(c) 2001-2002 Hybus Co,.ltd. All rights reserved.
//
// Module name:
// lstring.c
//
// Description:
www.eeworm.com/read/463459/7180451
bat 限制条件批量建立文件夹.bat
@echo off
:: 按照指定的条件建立连续的文件夹
cls
echo.
echo. 请按照"要建立的文件夹个数,初值,文件名数字部分的位数"
echo.
echo 的格式输入,以逗号分隔各个数字。
echo.
set input=
set /p input= 请按提示的格式输入:
setloc
www.eeworm.com/read/461590/7223940
vhd fp_utils.vhd
use work.dp32_types.all;
entity fp_is_zero is
generic(width: positive);
port ( fp: in bit_vector(width-1 downto 0);
r: out bit);
end fp_is_zero;
architecture behaviour of fp_is_zero is
begi
www.eeworm.com/read/461264/7230482
pro mag2flux.pro
function mag2flux, mag, zero_pt, ABwave = ABwave
;+
; NAME:
; MAG2FLUX
; PURPOSE:
; Convert from magnitudes to flux (ergs/s/cm^2/A).
; EXPLANATION:
; Use FLUX2MAG() for the opposite direction.
;
; CA
www.eeworm.com/read/458493/7295792
c binsearch.c
/* File: binSearch.c
*
* C source code for MEX version of binary search routine
* G.W. Recktenwald, 5 Jan 1998
*/
#include
#include "mex.h"
/* Input Arguments */
#define X