-
计算方法c牛顿插值函数
计算方法c牛顿插值函数-calculation c Newton interpolation function
- 2022-02-12 05:09:10下载
- 积分:1
-
大地坐标到平面坐标的转换――高斯
大地坐标到平面坐标的转换――高斯-格吕特变换-geodetic coordinates to the coordinates of the plane conversion-- Gaussian- Gruetter Transform
- 2023-05-02 13:40:03下载
- 积分:1
-
GPS绝对单点定位
运用cos站接收的GPS数据解算出卫星的坐标,这是GPS定位的基础,只有知道卫星坐标才能通过卫星坐标后方交汇求出地面控制点的坐标
- 2023-06-23 04:55:03下载
- 积分:1
-
线性规划中的单纯形法,单纯形法是求解线性规划的最主要方法,程序首先确定初始可行解,如没有找到,则引入人工变量或松弛变量来求解...
线性规划中的单纯形法,单纯形法是求解线性规划的最主要方法,程序首先确定初始可行解,如没有找到,则引入人工变量或松弛变量来求解-Of linear programming simplex method, simplex method for solving linear programming are the most important methods, procedures to determine first of all, the initial feasible solution, such as not found, then the introduction of artificial variables or slack variable is used to solve
- 2022-06-27 01:49:08下载
- 积分:1
-
8051控制电机的程序
应用背景使用单片机 ,可以控制电机的 转速 以至于调整输出功率 可移植性很强关键技术这是一个用c8051f020 实现的控制步进电机的完成程序 可运行,希望对需要学习的同学能有帮
- 2022-06-13 03:37:14下载
- 积分:1
-
通过使用MEM 系数进行线性预测的数值算法
通过使用MEM 系数进行线性预测的数值算法-through the use of MEM coefficient of linear prediction algorithm
- 2022-02-24 17:08:41下载
- 积分:1
-
雅可比迭代算法
要解决 AX = B 鉴于初始逼近 X(0)。
输入: 方程和未知数的数目 n;条目
A(I,J),1 < = I J < = n 的矩阵 ;条目 B (一),
1 < = I < = n 的非均匀期限 B ;条目
XO(I),1 < = I < = n 的 X(0) ;容忍 TOL ;最大值
N.迭代的次数
输出: 近似解 X(1),...,X(n) 或一条消息
迭代的次数超过了。
- 2022-03-17 20:27:40下载
- 积分:1
-
解决了矩形板切割矩形材料的问题,采用递归分治的方法
解决了矩形板切割矩形材料的问题,采用递归分治的方法-solve the rectangular plate rectangular cutting materials, using recursive method of administration
- 2022-12-10 09:00:02下载
- 积分:1
-
一个程序来寻找频繁项集(关闭和最大)与Eclat算法…
A program to find frequent itemsets (also closed and maximal) with the eclat algorithm ,which carries out a depth first search on the subset lattice and determines the support of itemsets by intersecting transaction lists. -A program to find frequent itemsets (also c losed and maximal) with the eclat algorithm, which carries out a depth first search on the sub set lattice and determines the support of items ets by intersecting transaction lists.
- 2022-02-20 07:32:43下载
- 积分:1
-
精品数据结构
// simpleSeq.cpp :
#include //定义在头文件“seqList.h”中
#include
const int defaultSize = 100;
using std::endl;
using std::cerr;
class SeqList{
protected:
int *data; //存放数组
int maxSize; //最大可容纳表项的项数
int last; //当前已存表项的最后位置(从开始)
void reSize(int newSize); //改变data数组空间大小
public:
- 2022-01-20 22:23:56下载
- 积分:1