搜索资源列表
euler.cpp
- 有时仅对赋权有向图上从任意一个顶点到另外任意一个顶点之间有没有路感兴趣。试修改Floyd算法,计算出图的道路矩阵P,使得从顶点i到顶点j有路时P[i,j]= 1,否则P[i,j]= 0。-sometimes only to empower a map from any one vertex to another arbitrary point between a road not interested. Try to amend Floyd algorithm calculated the ro
alglib-3.4.0.cpp
- 在求解线性方程组(System of Linear Equations)的算法中,有两类最基本的算法,一类是直接法,即以消去为基础的解法。如果不考虑误差的影响,从理论上讲,它可以在固定步数内求得方程组的准确解。另一类是迭代解法,它是一个逐步求得近似解的过程,-we can use several different methods to obtain a solution. If a unique solution is known to exist, and the coefficient m
Matrix
- 此包包含了众多矩阵处理程序,能够满足矩阵处理的一般要求,由于将各功能分开到不同的“.cpp”文件中,故使用时需要用户自行选取更换合适自己使用的“.cpp”文件。其中,矩阵功能有:输出矩阵、矩阵转置、矩阵归一化、判断矩阵对称、判断矩阵对称正定、全选主元法求矩阵行列式、全选主元高斯(Gauss)消去法求一般矩阵的秩、用全选主元高斯-约当(Gauss-Jordan)消去法计算实(复)矩阵的逆矩阵、用“变量循环重新编号法”法求对称正定矩阵逆、特兰持(Trench)法求托伯利兹(Toeplitz)矩阵逆、
jacobi.cpp
- jacobi algorithm (an iterative method of solving a matrix system)
Matrix
- 矩阵类的C++实现!可直接运行!Matrix.cpp Matrix.h-Matrix.cpp Matrix.h
alglib-2.5.0.cpp
- alglib,跨平台的数学分析和数据处理库,主要用于矩阵运算(SVD等)-ALGLIB is a cross-platform numerical analysis and data processing library. It supports several programming languages (C++, C#, Pascal, VBA) and several operating systems (Windows, Linux, Solaris). ALGLIB features
main.cpp
- 消元法解正三角三角阵方程组的小程序 使用时用VS2005打开,把后缀改为.cpp文件即可-Elimination method for solving triangular matrix equations
ANT.CPP
- C++ Implementation of Ant Colony Optimization Program.This uses a Cost matrix to Calculate the Shortest path from a number of Cities.
cPP
- 解析空中三角测量的迭代运算,包括矩阵转置,矩阵求逆,矩阵相乘等关键运算-Resolution aerial triangulation of the iteration, including matrix transpose, matrix inversion, matrix multiplication and other key operations
CPP
- 这是一个多态矩阵类,包含了矩阵的一些基本功能:矩阵之间的加、减、乘,矩阵的数乘还重载了矩阵的显示函数“<<”。-This is a multi-state matrices, including some of the basic functions of a matrix: matrix between addition, subtraction, multiplication, matrix multiplication is also overloading the matri
cPP
- 建立有向图的邻接矩阵,进行深度优先遍历,并利用广度优先遍历算法判断有向图中是否存在顶点vi到顶点vj的路径(i≠j)。-Establish the adjacency matrix, the depth-first traversal, and the use of breadth-first traversal algorithm to determine whether there is a directed graph vertex vi to vertex vj of the path
matrix
- 此包包含了众多矩阵处理程序,能够满足矩阵处理的一般要求,由于将各功能分开到不同的“.cpp”文件中,故使用时需要用户自行选取更换合适自己使用的“.cpp”文件。其中,矩阵功能有:输出矩阵、矩阵转置、矩阵归一化、判断矩阵对称、判断矩阵对称正定、全选主元法求矩阵行列式、全选主元高斯(Gauss)消去法求一般矩阵的秩、用全选主元高斯-约当(Gauss-Jordan)消去法计算实(复)矩阵的逆矩阵、用“变量循环重新编号法”法求对称正定矩阵逆、特兰持(Trench)法求托伯利兹(Toeplitz)矩阵逆、
cPP-matlab
- 应用于电力系统最优运行。 是C++与matlab相结合的源码程序,充分利用了matlab长于矩阵处理的优势。 程序实现了运筹学中的单纯形算法。-This procedure can be used for the optimal operation of the power system which combines C++ and matlab, and makes the most of matlab for matrix operations. The source code
CPP--MGraph
- 《数据结构》课程中,图的邻接矩阵存储,用C/C++编程实现。-Data structure course, graph the adjacency matrix storage, use C/C++ programming realization
DFS.cpp
- This code do depth first search algorithm. Adjacency matrix symbolize every edge in the graph, for example adj[i][j]=1 is an edge from i to j, i and j are vertices.
Data-structures-CPP
- 该程序主要是关于数据结构方面的,包括链表相关功能的实现,各种排序方法如冒泡排序,二分插入排序,图的实现,矩阵和树等程序的实现-The program data structures, including the related functions of the linked list implementation, various sorting methods such as bubble sort, binary insertion sort, graph realization matri
CPP
- 完成稀疏矩阵的各种运算;加法:可以完成加法的情况下分别对每行处理,如果非零员的列标小则在插入之,相同则完成加法运算,如果结果非零则插入。否则继续下一个飞灵员的处理。最后把没有处理的全部插入。 减法:可以完成减法的情况下,把非零员都变反,再调用加法运算。 乘法,在可以进行乘法的情况下,分别对每行处理:列如:如果M的第一行的第一个和最后一个非零,则把第一个和最后一个分别和N的第一行和最后一行的非零员相乘。得到的结果保存在相应的位置上,再处理下行。把结果在相同位置上的相加。最后用稀疏矩阵的存储
matrix-algorithm-CPP-code
- 文件包括矩阵相关的大多数算法的源代码,相当完备 -Matrix related to the source code of most algorithms, a fairly complete
sparse-matrix-operations-in-CPP
- 用C++实现的稀疏矩阵运算,里面包含了代码的实现和说明文档-It s a realization of sparse matrix operations in C++, it contains the implementation code and documentation
CPP-Classical-algorithm
- 插值 查找 常微分方程(组)的求解 多项式与连分式函数的计算 非线性方程与方程组的求解 复数运算 汉字操作 基本图形操作 极值问题 矩阵特征值与特征向量的计算 拟合与逼近 排序 数据处理与回归分析 数学变换与滤波-Interpolation to find the ordinary differential equation (group) polynomial continued fraction function to calculate