代码搜索:Infinity
找到约 1,499 项符合「Infinity」的源代码
代码结果 1,499
www.eeworm.com/read/276078/10769282
c 图的深度遍历源代码.c
//图的深度遍历源代码
#include
#include
#define INFINITY 32767
#define MAX_VEX 20 //最大顶点个数
bool *visited; //访问标志数组
//图的邻接矩阵存储结构
typedef struct{
char *vexs; //顶点向量
i
www.eeworm.com/read/273093/10927611
c dijk.c
#include "mex.h"
#include "iostream.h"
#include "stdlib.h"
#include "stdio.h"
#define INFINITY 10000
void dijkstra(double *g,int u1 ,int u2,double *out,double *value,int mrows,int ncols)
{doubl
www.eeworm.com/read/172061/7074851
c dijk.c
#include "mex.h"
#include "iostream.h"
#include "stdlib.h"
#include "stdio.h"
#define INFINITY 10000
void dijkstra(double *g,int u1 ,int u2,double *out,double *value,int mrows,int ncols)
{doubl
www.eeworm.com/read/145388/7125247
m ex5bvp.m
function ex5bvp
%EX5BVP Example 5 of the BVP tutorial.
% Falkner-Skan BVPs are discussed in T. Cebeci and H.B. Keller,
% Shooting and parallel shooting methods for solving the Falkner-Skan
%
www.eeworm.com/read/145388/7125260
m ex5bvp.m
function ex5bvp
%EX5BVP Example 5 of the BVP tutorial.
% Falkner-Skan BVPs are discussed in T. Cebeci and H.B. Keller,
% Shooting and parallel shooting methods for solving the Falkner-Skan
%
www.eeworm.com/read/145388/7125276
m ex5bvp.m
function ex5bvp
%EX5BVP Example 5 of the BVP tutorial.
% Falkner-Skan BVPs are discussed in T. Cebeci and H.B. Keller,
% Shooting and parallel shooting methods for solving the Falkner-Skan
%
www.eeworm.com/read/462824/7195091
c modiwars.c
/*Program for Modified Warshall's algorithm to find shoretst path matrix */
#include
#define infinity 9999
#define MAX 20
main()
{
int i,j,k,n;
int adj[MAX][MAX],path[MAX][MAX];
www.eeworm.com/read/455115/7377732
m hnormalise.m
% HNORMALISE - Normalises array of homogeneous coordinates to a scale of 1
%
% Usage: nx = hnormalise(x)
%
% Argument:
% x - an Nxnpts array of homogeneous coordinates.
%
% Returns:
%
www.eeworm.com/read/439490/7707869
c arctan.c
double atan(double x)
{
double y, z;
short sign, flag;
#ifdef MINUSZERO
if( x == 0.0 )
return(x);
#endif
#ifdef INFINITIES
if(x == INFINITY)
return(PIO2);
if(x == -INFINITY)
retur
www.eeworm.com/read/197958/7960843
c dijk.c
#include "mex.h"
#include "iostream.h"
#include "stdlib.h"
#include "stdio.h"
#define INFINITY 10000
void dijkstra(double *g,int u1 ,int u2,double *out,double *value,int mrows,int ncols)
{doubl