资源列表
chap5_3f
- 基于实数编码遗传算法的PID整定,被控对象为二阶传递函数
total_least_squares_TLS
- 本源码给出了总体最小二乘方法的matlab实现,开发者可以了解最小二乘方法原理,以及程序实现。
preisach
- 简单的Preisach模型,在Matlab中的建模,用于压电陶瓷输入输出曲线的拟合。-Simple Preisach model in Matlab modeling for piezoelectric ceramic input and output curve fitting.
PossionProcess
- 判断随机过程是否为泊松过程,对其进行模拟、检验及参数估计。-Random process to determine whether a Poisson process, its simulation, test and parameter estimation.
Euler
- 欧拉法和龙格库塔算法解一阶常微分方程源代码-Euler method and Runge-Kutta algorithm for solving differential equation source code
dynamic_programming_seeking_to_strike_points
- 动态规划求取点距,求200点A中插入30个点B后,A到最近B的最小和-dynamic programming, seeking to strike points beyond 200 point a to insert a 30- point b, c to the nearest b the minimum and
tsvd
- 截断奇异值分解技术是一种正则化方法,用于不适定问题的数值计算-Truncated Singular Value Decomposition is a regularizaiton method for ill-conditioned problem computation.
zzx3
- 此小程序是实现数学问题的N乘方表,用于初学者应用。-This small program is a mathematical problem of N power table for beginners applications.
C-means-classification
- C均值分类算法代码,在MALAB环境下可以实现分类。-C-means classification algorithm code, under the environment of MALAB classification can be achieved.
HelloPassword
- arduino如何设置密码,想学习arduino的学者可以-How to set scret of arduino
顺序查找代码
- 顺序查找适合于存储结构为顺序存储或链接存储的线性表。 基本思想:顺序查找也称为线形查找,属于无序查找算法。从数据结构线形表的一端开始,顺序扫描,依次将扫描到的结点关键字与给定值k相比较,若相等则表示查找成功;若扫描结束仍没有找到关键字等于k的结点,表示查找失败。