代码搜索:tiny
找到约 5,807 项符合「tiny」的源代码
代码结果 5,807
www.eeworm.com/read/334951/12559200
cpp qroot.cpp
#include
#include "nr.h"
using namespace std;
void NR::qroot(Vec_I_DP &p, DP &b, DP &c, const DP eps)
{
const int ITMAX=20;
const DP TINY=1.0e-14;
int iter;
DP sc,sb,s,rc,rb,r,dv
www.eeworm.com/read/247775/12619515
cpp qroot.cpp
void value1(double qq[],double rem1[],double d[],double q[])
{
int i;
for(i=1; i
www.eeworm.com/read/135438/13928969
txt qroot.txt
Procedure QROOT(P:array of real; N:integer; var B, C:real; EPS:real);
const
ITMAX = 20; TINY = 0.000001;
var
Q,REM1,QQ:array[0..20] of real; D:array[0..3] of real;
ITER,I:integer; S
www.eeworm.com/read/132413/14089927
c shell.c
#include
#define ALN2I 1.442695022
#define TINY 1.0e-5
void shell(n,arr)
float arr[];
int n;
{
int nn,m,j,i,lognb2;
float t;
lognb2=(log((double) n)*ALN2I+TINY);
m=n;
fo