-
把整数华氏温度转换成浮点数摄氏温度,精确到三位数字
把整数华氏温度转换成浮点数摄氏温度,精确到三位数字-put into Fahrenheit temperature float Celsius temperature, accurate to three figures
- 2022-01-25 14:02:25下载
- 积分:1
-
用复化梯形的算法思想求取某一表达式在某一点的满足精度的值...
用复化梯形的算法思想求取某一表达式在某一点的满足精度的值-Sputum 复化 Kyung-Ju 的 near 法 steel fist 求取某 Nanjing Nanjing 表达 driving Hitomi 某 点的满 glass 精度的 Order
- 2023-03-07 03:55:04下载
- 积分:1
-
在测绘或地图学中,经常会需要用高程点生成DEM,一般首先由这些点按最小原则生成三角网,此代码即是根据任意多个点生成Delaunay三角网功能。...
在测绘或地图学中,经常会需要用高程点生成DEM,一般首先由这些点按最小原则生成三角网,此代码即是根据任意多个点生成Delaunay三角网功能。-In the mapping or cartography often elevation point will need to generate DEM, generally the first point from these principles by the smallest triangulation generated, the code that is generated in accordance with any number of points, Delaunay triangulation function.
- 2022-06-12 17:50:14下载
- 积分:1
-
STL文件快速分层方法
提出了一种新的STL文件快速分层方法,其首先建立分层平面坐标的散列表,然后根据三角面片坐标值快速查找散列表,得到与三角面片存在交点的分层平面,然后直接用此分层平面与三角面片求交得到截交线。此方法在分层过程中每个三角面片只被查找一次,且不需对读入的三角面片建立复杂的拓扑结构。本文提到的分层算法得到的结果可很好地应用于基于STL模型的环切数控加工中。
- 2022-06-26 13:38:02下载
- 积分:1
-
一个求解Josephus问题的函数
#include
#include
#define NULL 0
#include
typedef struct Lnode
{
int data;
struct Lnode *next;
}Josephus;
void CreateList(Josephus*&L,int n)//建立循环链表
{
int i;
Josephus *p,*s;
s=(Josephus*)malloc(sizeof(Josephus));
s->data=1;
L=p=s;
for(i=2;idata=i;
p->next=s;
p=s;
}
p->next=L;
}
void DeleteList(Josephus*&L,Josephus*p,Josephus*q)
{
q->next=p->next;
free(p);
}
void Josephus1(Josephus*&L,int s,int m)
- 2022-01-27 23:12:59下载
- 积分:1
-
用vb写的有关科学计算方面的,包括求最大值,积分,统计,概率,矩阵运算等...
用vb写的有关科学计算方面的,包括求最大值,积分,统计,概率,矩阵运算等-used to write the relevant scientific computing, including seeking maximum points, statistics, probability, matrix operations, etc.
- 2022-02-04 14:20:48下载
- 积分:1
-
非常好的三角剖分程序(用visual c++ 编写)
用vc++编写的三角剖分程序,程序好用,有兴趣的看看吧:只需要点一系列的点,然后就可以自动剖分了。
- 2023-04-29 03:35:04下载
- 积分:1
-
serial port
这个解释有点复杂和晦涩。我们的
- 2023-07-22 03:20:03下载
- 积分:1
-
这个程序使用了遗传算法来优化点对点之间的轨迹度量。
这个程序使用了遗传算法来优化点对点之间的轨迹度量。-This code proposes genetic algorithm (GA) to optimize the point-to-point trajectory planning for a 3-link (redundant) robot arm.
- 2022-01-31 01:06:31下载
- 积分:1
-
一个比较COOL的模拟雪花飘落的例子
VB语言源代码,一个比较COOL的模拟雪花飘落的例子;
- 2022-03-22 07:56:51下载
- 积分:1