代码搜索:Infinity

找到约 1,499 项符合「Infinity」的源代码

代码结果 1,499
www.eeworm.com/read/362572/2931116

java doubleprint.java

class DoublePrint { static final double[] dcases = { 0.0, -0.0, Double.longBitsToDouble(0x8000000000000000L), 1.0, /* test dconst_1 */ Double.NaN, Double.POSITIVE_INFINITY,
www.eeworm.com/read/101715/15821897

dat innhp.dat

' TWO QUADRICS, NO SOLUTIONS AT INFINITY, TWO REAL SOLUTIONS.' &PROBLEM IFLGHM = 1 IFLGSC = 1 TOTDG = 4 MAXT = 6 EPSBIG = 1.D-04 EPSSML = 1.D-14 SSPAR(
www.eeworm.com/read/192030/8410889

m ceil.m

function P = ceil(P) % CEIP -- built-in CEIL, extended to matrix polynomials % % P = ceil(P) % % Round P.coef towards +infinity. % Copyright (c) 2004 by Fritz Keinert (keinert@iastate
www.eeworm.com/read/192030/8410930

m floor.m

function P = floor(P) % FLOOR -- built-in FLOOR, extended to matrix polynomials % % P = floor(P) % % Round P.coef towards -infinity. % Copyright (c) 2004 by Fritz Keinert (keinert@ias
www.eeworm.com/read/385894/8783285

txt 11-3.txt

!/BACH,LIST /TITLE,Sphere to infinity capacitance using a Trefftz Domain ! 定义工作标题 /FILNAME,Trefftz,1 ! 定义工作文件名 KEYW,MAGELC,1 ! 指定电场分析
www.eeworm.com/read/181830/9235766

m ceil.m

function P = ceil(P) % CEIP -- built-in CEIL, extended to matrix polynomials % % P = ceil(P) % % Round P.coef towards +infinity. % Copyright (c) 2004 by Fritz Keinert (keinert@iastate
www.eeworm.com/read/181830/9235787

m floor.m

function P = floor(P) % FLOOR -- built-in FLOOR, extended to matrix polynomials % % P = floor(P) % % Round P.coef towards -infinity. % Copyright (c) 2004 by Fritz Keinert (keinert@ias
www.eeworm.com/read/365208/9875141

bas baswaves.bas

Attribute VB_Name = "basWaves" Option Explicit Declare Function GetTickCount Lib "kernel32" () As Long Global Const PI = 3.14159265358979 Global Const INFINITY = 2147483647 Global Const m3Par
www.eeworm.com/read/365029/9881407

cpp subfams.cpp

#include "muscle.h" #include "distfunc.h" const float INFINITY = float(1e29); const unsigned NILL = uInsane; static float *ShortestPathEstimate; static unsigned *Predecessor; static void G
www.eeworm.com/read/168225/9931429

txt dijkstra.txt

#include #define INFINITY 1000 typedef struct Vertex_Info { int visited; int dist; int path; }Vertex_Info; typedef struct Vertex { int vertex; int dist; s