资源列表
partial-differential-equation
- MATLAB实现偏微分方程的差分计算 源程序代码,绘制了三维图-MATLAB difference calculation of partial differential equation for the source code, to draw a three-dimensional figure
pamalgorithm
- Partitioning Around Medoid is an algorithm used to select Pilot Buses in a given Power Network. The code was applied on the IEEE-118 bus system which was divided into four zones.
yingfeng
- 采用CFD中的迎风格式求解一维Euler方程-The upwind scheme using CFD to solve one-dimensional Euler equations
naca456
- GENERATE NACA 4,5,6 SERIES AIRFOIL COORDINATES. PROGRAM WRITTEN IN FORTRAN
Gdop_tdoa
- 双星定位算法及各因素对精度的影响分析.有一定的学习帮助-Influence of various factors on the binary localization algorithm accuracy. Has some learning to help
integral2
- 此程序给出了如何对一个二维函数进行高精度高斯积分的实例。-This program shows how to function on a two-dimensional Gaussian integral precision instance.
funappr
- 数值计算中函数逼近MATLAB实现,其中包括拉格朗日逼近、切比雪夫逼近等.-Numerical calculation function MATLAB program, including Lagrange approximation, Chebyshev approximation .
CFD7_5
- 亚音速-超音速等熵喷管,守恒形式方程,MacCormack方法求解-Subsonic- supersonic isentropic nozzle, conservation equation form, MacCormack method for solving
paramesh_4.1
- 自适应笛卡尔网格程序,是未来研究的主要方向,其为国际上通用计算程序包-PARAMESH is a package of Fortran 90 subroutines designed to provide an application developer with an easy route to extend an existing serial code which uses a logically cartesian structured mesh into a parallel code
TFRWV
- 该源码用于分析信号的时频特性,wigner-ville分布,单信号以及两个信号间的正交wigner-ville分布-wigner-ville distribution
ninewton
- 拟牛顿法求解方程,计算每一步的结果以及最终迭代次数-Quasi-Newton method for solving equations, each step of the calculation results and the final iterations
adaboost
- AdaBoost元算法属于boosting系统融合方法中最流行的一种,说白了就是一种串行训练并且最后加权累加的系统融合方法。 具体的流程是:每一个训练样例都赋予相同的权重,并且权重满足归一化,经过第一个分类器分类之后, 计算第一个分类器的权重alpha值,并且更新每一个训练样例的权重,然后再进行第二个分类器的训练,相同的方法....... 直到错误率为0或者达到指定的训练轮数,其中最后预测的标签计算是各系统*alpha的加权和,然后sign(预测值)。 可以看出,训练流程是串行的