代码搜索:Infinity
找到约 1,499 项符合「Infinity」的源代码
代码结果 1,499
www.eeworm.com/read/229812/4750714
gml isinf.gml
.func isinf
#include
int isinf( x );
.funcend
.*
.desc begin
The &func macro determines whether its argument value is an infinity
(positive or negative).
First, an argument represente
www.eeworm.com/read/298657/3862148
c s_isinf.c
/*
* isinf(x) returns 1 if x is infinity, else 0;
* no branching!
*
* isinf is a macro in the C99 standard. It was previously
* implemented as a function by newlib and is declared as su
www.eeworm.com/read/279968/4131705
c s_isinf.c
/*
* isinf(x) returns 1 if x is infinity, else 0;
* no branching!
*
* isinf is a macro in the C99 standard. It was previously
* implemented as a function by newlib and is declared as su
www.eeworm.com/read/251957/4412819
txt templates6.txt
#-- Version 6 --#
#-- Beta Advanced Text Graphics --#
# templates for the BIFS nodes
# =============================
# Notations I = Infinity
# %q=x Quantization method x
# 0 None
# 1 3D Position (S
www.eeworm.com/read/370140/9615766
dpr maxflow_preflowpush.dpr
Const
MaxN = 5000 ;
MaxM = 50000 ;
MaxNodeNum = MaxN + MaxM + 2 ;
MaxEdgeNum = (MaxN + 3 * MaxM) * 2 ;
Infinity = 10000000 ;
Type
EdgeType = record
Start,Target:Longint;
Capa,Flow:L
www.eeworm.com/read/428423/8870629
m hinfcontrol.m
%This script is to illustrate how one can design H-infinity controllers in
%Matlab. The example shows some different ways to synthesize a controller
%for the mixed S/KS weighted sensitivity problem.
www.eeworm.com/read/424063/10500619
m h2des1.m
% A function for use with the h-infinity Control Toolbox demonstration
% Copyright (c) 1990-94 by The MathWorks, Inc.
format short
% Construct the wieghting functions
sys = mksys(a,b,c,d);
[
www.eeworm.com/read/414534/7811448
h common.h
#include
#include
#include
#include
using namespace std;
typedef char ElemType[6];
#define maxnode 5000;
#define infinity 1000000;
ElemType vtail,vhead;//要查
www.eeworm.com/read/399710/7840422
cpp 路由算法2.cpp
#include
#include
#include
#define INFINITY 1000 /*最大距离*/
#define MAXNODES 100 /*最大节点数*/
struct state
{
in
www.eeworm.com/read/145453/12723631
java~1~ graph.java~1~
package datas2;
class Graph
{
private final int MAX_VERTS = 20;
private final int INFINITY = 1000000;
private Vertex vertexList[]; // list of vertices
private int adjMat[][];