搜索结果
找到约 499 项符合
LMS-Newton 的查询结果
嵌入式/单片机编程 实现了DSP2407芯片的A/D-D/A转换
实现了DSP2407芯片的A/D-D/A转换,can模块的使用,FFT以及LMS算法
数学计算 This program contains the iterative methods of finding solutions of the equation f(x)=0, which are a
This program contains the iterative methods of finding solutions of the equation f(x)=0, which are also known as the roots of the equation f(x)=0
The methods are:
-bisection
-false position
-newton raphson
-secant
文件格式 本文件包括了关于自适应滤波器matlab实现的主流模拟仿真
本文件包括了关于自适应滤波器matlab实现的主流模拟仿真,其中包括lms,nlms,rls等等,供交流经验
仿真技术 DFP NEWTON
DFP方法matlab实现
数学计算 Optimization Modelling A Practical Approach
Optimization
Modelling
A Practical Approach
Ruhul A. Sarker
Charles S. Newton
源码 TPIC6B595驱动共阳数码管
最近搞到两块用TPIC6B595驱动的共阳LED数码管电路。每块电路板上有5个LMS-1102BE数码管和5个TPIC6B595集成电路。该电路只有5根输入端子,第1和第5个端子是+5V和GND,第2、3、4端子分别是数据输入端、数据锁存时钟端和移位时钟端。
将该电路板与HC6800 EM3 V3.0单片机实验板连接,单片机的P3.4,P3.5和P3.6引脚分别接到 ...
源码 fortan程序数值分析之Newton法求解非线性方程组
module M_GAUSS
!高斯列主元消去法模块
contains
subroutine LINEQ(A,B,X,N)
!高斯列主元消去法
   implicit real*8(A-Z)
   integer::I,K,N
   integer::ID_MAX  !主元素标号
   real*8::A(N,N),B(N),X(N)
  &n ...