代码搜索:zero
找到约 10,000 项符合「zero」的源代码
代码结果 10,000
www.eeworm.com/read/357542/10206928
c start08.c
/******************************************************************************
FILE : start08.c
PURPOSE : 68HC08 standard startup code
LANGUAGE : ANSI-C / INLINE ASSEMBLER
www.eeworm.com/read/357506/10208357
m factorize.m
function Factors = factorize(polyn)
format long; Factors = [];
% Use threshold of 1e-8 instead of 0 to account for
% precision effects
THRESH = 1e-8;
%
proots = roots(polyn); % get the zeroes of
www.eeworm.com/read/356335/10230849
cc biginteger.cc
#include "BigInteger.hh"
void BigInteger::operator =(const BigInteger &x) {
// Calls like a = a have no effect
if (this == &x)
return;
// Copy sign
sign = x.sign;
// Copy the rest
mag = x.mag
www.eeworm.com/read/162415/10307489
m fzero.m
%FZERO Find zero of f(x)
%
% x=fzero('f',x0,tol) returns x for which f(x)=0. If no such x is found,
% x=NaN. x0 serves as an initial guess.
% tol is the tolerance for which a zero will be identifi
www.eeworm.com/read/424962/10389878
cs gps.cs
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed thi
www.eeworm.com/read/278154/10562974
c machar.c
#include
#define CONV(i) ((float)(i))
void machar(int *ibeta, int *it, int *irnd, int *ngrd, int *machep, int *negep,
int *iexp, int *minexp, int *maxexp, float *eps, float *epsneg,
f
www.eeworm.com/read/278154/10563040
c fixrts.c
#include
#include "complex.h"
#define NMAX 100
#define ZERO Complex(0.0,0.0)
#define ONE Complex(1.0,0.0)
void fixrts(float d[], int m)
{
void zroots(fcomplex a[], int m, fcomplex r
www.eeworm.com/read/278154/10564065
c machar.c
#include
#define CONV(i) ((float)(i))
void machar(int *ibeta, int *it, int *irnd, int *ngrd, int *machep, int *negep,
int *iexp, int *minexp, int *maxexp, float *eps, float *epsneg,
f
www.eeworm.com/read/278154/10564136
c fixrts.c
#include
#include "complex.h"
#define NMAX 100
#define ZERO Complex(0.0,0.0)
#define ONE Complex(1.0,0.0)
void fixrts(float d[], int m)
{
void zroots(fcomplex a[], int m, fcomplex r
www.eeworm.com/read/159827/10611525
cpp countst.cpp
//THIS PROGRAM IS TO TEST THE COUNTER CLASS
//FILE COUNTST.CPP
#define ZERO 0
#define TEN 10
#include
#include "Count.h"
int main(void)
{
COUNTER TEST;
int CIRCLE;
c