-
肾结石分割
这是肾结石的分割算法。它是非常高效的算法,结果给出明确的肾结石。欢迎大家下载、试用。谢谢大家的支持!
- 2022-02-10 09:58:10下载
- 积分:1
-
计算飞船相对测站的位置矢量单位矢量在赤道坐标系中的三个分量...
计算飞船相对测站的位置矢量单位矢量在赤道坐标系中的三个分量-Calculation of the spacecraft relative position vector of the station unit vector in the equatorial coordinate system of the three subscales
- 2023-03-12 12:35:03下载
- 积分:1
-
本书是国内外业界广泛关注的7卷本《计算机程序设计艺术》第2卷的最新版。本卷对半数值算法领域做了全面介绍,分“随机数”和“算术”两章。本卷总结了主要算法范例及这些...
本书是国内外业界广泛关注的7卷本《计算机程序设计艺术》第2卷的最新版。本卷对半数值算法领域做了全面介绍,分“随机数”和“算术”两章。本卷总结了主要算法范例及这些算法的基本理论,广泛剖析了计算机程序设计与数值分析间的相互联系,其中特别值得注意的是作者对随机数生成程序的重新处理和对形式幂级数计算的讨论。 本书附有大量习题和答案,标明了难易程度及数学概念的使用。 本书内容精辟,语言流畅,引人入胜,可供从事计算机科学、计算数学、计算技术诸方面的工作人员参考、研究和借鉴,也是相关专业高等院校的理想教材和教学参考书。 -the book industry at home and abroad is widespread concern in seven volumes of the "Art of Computer Programming" volume 2, the latest version. The present volume of semi- numerical algorithm to do a full field, at the "random" and "arithmetic" two chapters. This volume summary of the main examples of these algorithms on the basic theory and extensive analysis of the computer program design and numerical analysis of the linkages between, which is particularly noteworthy is the author of Random Number Generation procedures for processing and re-form calculation of power series. The book with a large number of exercises and answers, indicating the degree of difficulty and the use of mathematical concepts. T
- 2022-08-07 04:44:02下载
- 积分:1
-
无网格算法EFGM的matlab源代码
EFG是无网格算法里面的代表性算法,1994年由Ted提出,此程序为matlab写的EFG的程序,一个平面2D的问题,无网格学习的可以好好看一下
- 2023-04-25 13:05:04下载
- 积分:1
-
Used to solve nonlinear systems in the bifurcation, chaos, periodic, quasi
用来求解非线性系统中分岔,混沌,周期,准周期等动力学,可以求数值解,也可画图,只要知道系统模型,可以根据需要自由修改参数,软件带有使用说明,简单易懂-Used to solve nonlinear systems in the bifurcation, chaos, periodic, quasi-periodic dynamics, etc., you can seek numerical solutions, but also drawing, as long as know the system model, you can freely modify the parameters as needed, the software with instructions for use, simple and easy to understand
- 2022-03-19 08:32:01下载
- 积分:1
-
快速 RSA 密码体制实现使用中国剩余定理
/ / RSATestFast: 测试快速 RSA 实现
导入 java.math.* ; / / 为 BigInteger
导入 java.util.* ; / / 为随机
公共类 RSATestFast {
公共静态 void elapsedTime (长开始时间) {
长时间停止时间 = System.currentTimeMillis() ;
双 elapsedTime = ((双)(stopTime-startTime)) / 1000.0 ;
System.out.println ("已用时间:"+ elapsedTime +"秒") ;
}
公共静态 void main (字符串 [] args) {
随机 rnd = 新 Random() ;
BigInteger m、 m1、 m2、 m3、 c、 s,s1 ;
RSAPrivateKeyFast 爱丽丝 = 新 RSAPrivateKeyFast (1024,rnd,"爱丽丝") ;
RSAPrivateKeyFast bob = 新 RSAPrivateKeyFast (1024,rnd,"鲍勃 ") ;
m = 新 BigInteger (
"1234567890987654321012345678909876543210"+
"1234567890987654321012345678909876543210"+
"1234567890987654321012345678909876543210"+
"1234567890987654321012345678909876543210"+
"1234567890987654321012345678909876543210"+
"1234567890987654321012345678909876543210") ;
System.out.println
- 2022-05-29 11:03:37下载
- 积分:1
-
sift算法
这是基于MFC的sift算法,在VC上运行通过,代码注释比较详细,分块比较清晰,通过按键可以生成高斯金字塔,差分金字塔特征点和方向,已经特征点的文档
- 2022-04-19 07:31:01下载
- 积分:1
-
线性分类码。老师要我们自己做,有…
fisher线性分类代码。老师要我们自己做的,还不错哦-fisher linear classification code. Teacher wants us to make their own, and have a good oh
- 2023-06-18 23:00:03下载
- 积分:1
-
帕斯卡单反分析表生成与语法分析
资源描述语法分析是编译程序的重要组成部分,LR分析法是一种自下而上的语法分析方法,其适用范围大,在编译程序中大都采用此法进行语法分析,单反分析则是LR中一种较简单有效的分析法;语法分析作为编译过程中一个不可缺少的步骤,对其进行研究有着非常重要的意义。
- 2023-06-20 15:35:05下载
- 积分:1
-
BP网络的C/C++实现,含有详细代码和例子,适合初学者
应用背景人工神经网络(ANN)中关于反向传播算法的内容,相比单个感知器而言,采用多层网络的反向传播算法能表示出更多种类的非线性曲面,整个神经网络可以分成三层:输入层,隐藏层,输出层,通过加权线性变换,层与层之间的传递,最终得到输入层的实数值。关键技术
本人根据附件里面的文章编写的反向传播算法代码,里面含有详细的代码注释和文章例子, 可以让初学者深刻理解反向传播算法,适合初学者学习。给出BP算法训练的例子,对单个样本的训练的情况进行编写和验证。
//输入层到隐层的过程
float fNetj[m];
for (int j= 0;j < m; j++){
fNetj[j] = fTheta[n][j]; //这里权值矩阵最后一列是偏置,偏置×1还是偏置,所以直接加上,
//后面就不用乘了
for(int i = 0;i < n; i++){ //得到netj 的值 netj= X^V
fNetj[j] +=fInputdata[i]*fTheta[i][j];
}
fMidResult[j] = 1/(1 + exp(-fNetj[j]));
//cout
- 2022-08-03 01:10:12下载
- 积分:1