联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找All 数学计算(470) 
按平台查找All Visual C++(470) 

[数学计算] ZYKIH

先输入矩阵的维数,再输入该矩阵,然后通过该算法从大到小输出该矩阵的各行各列和主辅对角线的和
Input the dimension of the matrix, then input the matrix, and then output the sum of the rows, columns and diagonals of the matrix from large to small by the algorithm (2018-11-19, Visual C++, 1017KB, 下载0次)

http://www.pudn.com/Download/item/id/1542563514901238.html

[数学计算] Matrix-Operations

1) 能够实现矩阵加、减、乘、逆等基本运算。 2) 初始矩阵的数据可以手工输入,也可从文件读取,运算结果可以保存到文件中。
1) to achieve matrix addition, subtraction, multiplication, inverse and other basic operations.   2) The initial matrix data can be entered manually, can also be read a file, the operation results can be saved to a file. (2014-12-23, Visual C++, 2KB, 下载4次)

http://www.pudn.com/Download/item/id/2679557.html

[数学计算] Polynomial

多项式的加法、减法、乘法、加赋值、减赋值、乘赋值计算。
Create a class call it Polynomial. Each polynomial contains an array of terms. Each term contains a coefficient and an exponent. For example for term 5x^2. The coefficient is 5 and the exponent is 2. For constant 9, the coefficient is 9 and exponent is 0.. In this class, the coefficients and exponents are integers. (2013-11-17, Visual C++, 3645KB, 下载3次)

http://www.pudn.com/Download/item/id/2402109.html

[数学计算] suntans

溃坝模拟,斯坦福大学开发,用于计算海浪波长,精度高
Dam-break simulation, Stanford developed at the University of, used to calculate the the the wavelength of the waves, high precision (2013-05-14, Visual C++, 9804KB, 下载39次)

http://www.pudn.com/Download/item/id/2242038.html

[数学计算] NND-scheme-solver

计算流体力学大作业之一:一维标量问题的CFD求解,格式为NND;C语言代码。
Computational Fluid Dynamics of operations, one: the one-dimensional scalar CFD solver, the format of the NND C language code. (2013-04-30, Visual C++, 2KB, 下载17次)

http://www.pudn.com/Download/item/id/2222620.html

[数学计算] Gauss

VC++ 6.0 编写的使用列主元高斯消去法计算线性方程组的解。方程的系数和维数可以在函数体内手动修改。
Use written VC++ 6.0 out PCA Gaussian elimination method to calculate the solution of linear equations. The coefficients of the equation and dimension can manually modify the function body. (2012-12-31, Visual C++, 1KB, 下载3次)

http://www.pudn.com/Download/item/id/2102365.html

[数学计算] Bayesian-posterior-probability

实现贝叶斯概率计算过程。假设进行n次试生产,计算最后得到后验概率,即可信度。样本数据集个数和观测值从文件中读入,计算过程封装为动态链接库,以.dll形式提供, 主程序提供界面输入先验分布值、边缘分布值,显示计算结果。
Bayesian probability calculation process. Assuming that the n-th trial production, and calculate the final posterior probability that credibility. The number of sample data sets and observations read from the file, the calculation process packaged as a dynamic link library. Dll form, the main program interface input prior distribution value, value of marginal distribution, display calculation results. (2012-10-11, Visual C++, 1289KB, 下载22次)

http://www.pudn.com/Download/item/id/2013147.html

[数学计算] Naigation

处理导航数据文件,建立邻接矩阵,采用迪杰斯特拉算法实现庞大数据的简易导航功能,内含原始数据文件和导航数据文件。
processing navigation data file,the establishment of adjacency matrix,the dijkstra algorithm tosearch path. (2012-08-23, Visual C++, 84KB, 下载4次)

http://www.pudn.com/Download/item/id/1973608.html

[数学计算] kalman_teat

卡尔曼滤波算法的实现,主要是一维的温度卡尔曼的算法处理
kalman filter finish (2012-07-31, Visual C++, 1436KB, 下载23次)

http://www.pudn.com/Download/item/id/1953421.html

[数学计算] Grubbs_filter

这是 格拉布斯去异常值法,用于去除数据组中不相关性低,数值异常的数据,去除可能的粗差,保证数据的准确性和稳定性。可用于数据滤波,以及对数据稳定性要求较高的场合
This is the outlier Grubbs went to law, for the removal of the data set in a low correlation, the data of numerical abnormalities, removal of gross errors possible, to ensure data accuracy and stability. Can be used for data filtering, and data stability requirements of the occasion (2012-06-09, Visual C++, 2KB, 下载53次)

http://www.pudn.com/Download/item/id/1907599.html

[数学计算] Matrix-multiplication-problems-with

给定n个矩阵{A1,A2,…,An},其中Ai与Ai+1是可乘的,i=1,2,…,n-1。要算出这n个矩阵的连乘积A1A2…An。由于矩阵乘法满足结合律,故计算矩阵的连乘积可以有许多不同的计算次序。这种计算次序可以用加括号的方式来确定。若一个矩阵连乘积的计算次序完全确定,也就是说该连乘积已完全加括号,则可以依此次序反复调用2个矩阵相乘的标准算法计算出矩阵连乘积。本文的功能是采用动态规划算法,给出矩阵的一种最优的加括号方式,是计算量最小。
Given n matrices {A1, A2, ..., An}, where Ai and Ai+1 is a mere of, i = 1,2, ..., n-1. To calculate the n matrix with the product A1A2 ... An. Since matrix multiplication to meet with law, so the calculation of the matrix with the product can have many different calculation order. This calculation can be bracketed in order to determine ways. Even if the product of a matrix calculation to determine the complete sequence, that the product is fully bracketed with, so you can call the order of 2 repeated the standard matrix multiplication algorithm to calculate the matrix with the product. This feature is the use of dynamic programming algorithm, a matrix is ​ ​ given in parentheses best way is to calculate the minimum amount. (2011-06-30, Visual C++, 13KB, 下载6次)

http://www.pudn.com/Download/item/id/1585845.html

[数学计算] diguidituifa

递归法实现猴子吃桃,第十天一个桃子,球第一天的数量,每天吃的数量是前一天数量的一半加一,递归法整数排序
Recursive method to achieve the monkeys eat peaches, the tenth day of a peach, the number of the first day of the ball, eat the day before the number is half the number plus one, sort integer recursion (2010-11-07, Visual C++, 1KB, 下载4次)

http://www.pudn.com/Download/item/id/1338418.html

[数学计算] aiyinsitan

爱因斯坦经典难题解决算法(就是那个谁养鱼的问题)。采用C++实现,有兴趣的朋友可下来看看
Einstein' s classic puzzle solving algorithm (that is, the guy who fish the problem). Using C++ implementation of friends who are interested can look down (2010-10-22, Visual C++, 14KB, 下载7次)

http://www.pudn.com/Download/item/id/1324085.html

[数学计算] 5-1

分别用两个一维数组存放一个上三角矩阵和一个下三角矩阵,完成两矩阵的乘法并输出结果(使用特殊矩阵基本算法)
Were placed with two one-dimensional array of an upper triangular matrix and a lower triangular matrix, the completion of the two matrix multiplication and the output (using a special matrix of basic algorithm) (2010-04-19, Visual C++, 2KB, 下载6次)

http://www.pudn.com/Download/item/id/1133481.html

[数学计算] matrix

矩阵运算模块:寻找二维数组中的最大值;寻找二维数组中的最小值;寻找一维数组中的最小值;求取两个向量之间的欧式距离
Matrix calculation modules: search for the maximum two-dimensional array to find the minimum value of two-dimensional array one-dimensional array to find the minimum value strike two of the Euclidean distance between vector (2008-07-01, Visual C++, 1KB, 下载16次)

http://www.pudn.com/Download/item/id/502241.html

[数学计算] cal_tide

高斯塞德尔迭代计算电网潮流,运用复数向量计算,计算中用阻抗矩阵实现
High斯塞德尔iterative power flow calculation, the use of plural vector calculated using the impedance matrix realize (2008-03-10, Visual C++, 1KB, 下载15次)

http://www.pudn.com/Download/item/id/413667.html

[数学计算] Matrix.operation

用户输入两个矩阵的维数和元素,选择加减乘三种运算方式中的一种,程序将显示运算结果。采用动态分配数组空间。初学C++写的,简单易懂。
user input two-dimensional matrix of elements and a few select modified by the three operators a way, Operational procedures will show results. Dynamic array allocation of space. Novice C written and easily understood. (2007-04-14, Visual C++, 1KB, 下载3次)

http://www.pudn.com/Download/item/id/268117.html

[数学计算] GaussMat

完全自编Gauss消去法矩阵方程求解程序,各子函数独立小巧,可读性强,矩阵维数可自定义,适用于复杂的线型代数齐次、非齐次方程的求解
completely self Gauss elimination matrix equation procedures, the independent Functions compact, reader-friendly, Matrix dimension can be self-definition, applicable to complex linear algebra homogeneous, non-homogeneous equation solving (2007-03-13, Visual C++, 1KB, 下载32次)

http://www.pudn.com/Download/item/id/254873.html

[数学计算] MeaDirNet

此是关于纯方向网测量平差程序,与一般的方向网平差程序不同的是,二维矩阵用一维矩阵表示,实现了压缩存储,提高效率。
this is the direction of pure network measurement adjustment procedures, and the general direction of the net adjustment process is different using a two-dimensional matrix dimensional matrix, achieving compression storage, and improve efficiency. (2006-04-25, Visual C++, 51KB, 下载25次)

http://www.pudn.com/Download/item/id/175945.html

[数学计算] LWLFkuiba

一个一维溃坝模拟动画,使用复合有限差分法,效果很好。刚学刚做,希望对大家有点用处。内含源程序。
a one-dimensional dam break simulation animation, the use of composite finite difference method with good results. Just do just learning, and I hope to you a bit useless. Intron source. (2006-04-17, Visual C++, 2050KB, 下载78次)

http://www.pudn.com/Download/item/id/172610.html