资源列表
代码
- 傅里叶变换以及图像模糊处理相关代码,已经过运行,没有错误,且能出结果(Fu Liye transform and image fuzzy processing code.)
GM
- 灰色模型,通过公式可推导出来,每一步都写了注释,应该是没有问题的(The grey model, which can be derived from the formula, should be ok.)
matlab_lect
- calculatin matlab files
SPLL
- 采用spll控制结构,simulink 仿真结果正确 dq变换(SPLL control structure is adopted, Simulink simulation result is correct, dq transform.)
SVPWM
- SVPWM 空间矢量发 matlab仿真正确 没有毛病(SVPWM space vector matlab simulation is correct, nothing wrong.)
matlab
- matlab 代码 :关于matlab, secant,bisection,falsepos(matlab code about newton equation, secant, bisection, falsepos)
FAST0
- 可以分离出语音等信号,迭代速度快,时间短(Can be separated from the voice and other signals, faster iterations, short time)
bin2words
- bin to word converter
Lfnewton
- 牛顿迭代打独立思考的卡了是单卡手机打开链接打开了手机(lfnewtonThis program obtains th Bus Admittance Matrix for power flow solution)
MATLAB程序设计与应用(刘卫国第1版)
- 有关matlab的一本书籍,内容还不错。讲的很细致,也有部分例程。(The book of MATLAB is rich in content.)
active filter
- In this paper, an efficient active power filter (APF) scheme is developed to estimate and compensate for harmonic distortion in an electrical power network. The developed APF control scheme is based on a double proportional feedback controller and a
vrp
- 首先实现一个ant蚂蚁类,用此蚂蚁类实现搜索。 算法按照tsp问题去解决,但是在最后计算路径的时候有区别。 比如有10个城市,城市1是配送站,蚂蚁搜索的得到的路径是1,3,5,9,4,10,2,6,8,7。 计算路径的时候把城市依次放入派送线路中, 每放入一个城市前,检查该城市放入后是否会超过车辆最大载重 如果没有超过就放入 如果超过,就重新开始一条派送路线 …… 直到最后一个城市放完 就会得到多条派送路线 这样处理比较简单可以把vrp问题转为tsp问题求解 但