Welcome![Sign In][Sign Up]
Location:
Search - variable analysis

Search list

[matlabadaptive-signal-arithmetic

Description: Some algorithms of variable step size LMS adaptive filtering are studied.The VS—LMS algorithm is improved. Another new non-linear function between肛and e(/ t)is established.The theoretic analysis and computer simulation results show that this algorithm converges more quickly than the origina1.Furthermore,better antinoise property is exhibited under Low—SNR environment than the original one.-variable step size of a LMS daptive filtering are studied. The VS-LMS algorithm is improved. Another new non-linear function between anus and e (/ t) is established. The theoretic analysis and computer simulatio n results show that this algorithm converges mo 're quickly than the origina1. Furthermore, better antinoise property is exhibited under L ow- SNR environment than the original one.
Platform: | Size: 3072 | Author: 上将 | Hits:

[matlabLMS

Description: 在一种变步长LMS 算法的基础上,引进动量因式,提出了一种新的改进LMS 的算法。新算法整体性能优 于变步长LMS 算法以及LMS 算法。通过理论分析,比较了新的算法和变步长LMS 算法以及LMS 算法的收敛性 和稳态性,提出了一种设想以提高新算法的稳态性。仿真试验证明了新算法的优越性以及设想的在仿真条件下的正 确性。-In a variable step size LMS algorithm, based on the introduction of momentum factor, a new improvement of LMS algorithms. The overall performance of the new algorithm is superior to variable step size LMS algorithm and LMS algorithm. Through theoretical analysis, comparing the new algorithm and variable step size LMS algorithm and LMS algorithm convergence and steady-state, and proposes a new algorithm is envisaged to enhance the steady-state nature. Simulation tests proved the superiority of the new algorithm, as well as envisaged under the conditions in the simulation is correct.
Platform: | Size: 139264 | Author: 王勇 | Hits:

[Algorithmppca

Description: Probabilistic Principal Components Analysis. [VAR, U, LAMBDA] = PPCA(X, PPCA_DIM) computes the principal % component subspace U of dimension PPCA_DIM using a centred covariance matrix X. The variable VAR contains the off-subspace variance (which is assumed to be spherical), while the vector LAMBDA contains the variances of each of the principal components. This is computed using the eigenvalue and eigenvector decomposition of X.-Probabilistic Principal Components Analysis. [VAR, U, LAMBDA] = PPCA (X, PPCA_DIM) computes the principal component subspace U of dimension PPCA_DIM using a centred covariancematrix X. The variable VAR contains the off-subspace variance (whichis assumed to be spherical ), while the vector LAMBDA contains thevariances of each of the principal components. This is computedusing the eigenvalue and eigenvector decomposition of X.
Platform: | Size: 1024 | Author: 西晃云 | Hits:

[Speech/Voice recognition/combineLMSmatlab

Description: 这 里主要对LMS算法及一些改进的LMS算法(NLMS算法、变步长LMS算法、变换域LMS算法)之间的不同点进行了比较,在传统的LMS算法的基础上发 展了LMS算法的应用。另一方面又从RLS算法的分析中对其与LMS算法的不同特性进行了比较。-Here mainly on the LMS algorithm and some improvements of the LMS algorithm (NLMS algorithm, variable step size LMS algorithm, transform domain LMS algorithm) between the different points of comparison, in the traditional LMS algorithm developed on the basis of the application of the LMS algorithm. On the other hand from the analysis of RLS algorithm and LMS algorithm for its different characteristics compared.
Platform: | Size: 30720 | Author: jj | Hits:

[Windows Develophook

Description: Hook编程。如何安装钩子过程,如何编写全局钩子,动态连接库里的全局变量数据共享问题分析。ADO数据库编程。在VB中利用ADO控件和ADO对象访问数据库,在VC中利用ADO技术访问数据库-Hook programming. How to install the hook process, how to write global hooks, dynamic link library' s global variable analysis of data sharing problem. ADO database programming. The use of ADO in the VB controls and ADO Object Access database, the use of ADO in VC technology access to the database
Platform: | Size: 159744 | Author: 西嘻 | Hits:

[OtherCode

Description: Hook编程。如何安装钩子过程,如何编写全局钩子,动态连接库里的全局变量数据共享问题分析。ADO数据库编程。-Hook programming. The process of how to install the hook, how to write global hooks, dynamic link library, global variable analysis of data sharing. ADO database programming.
Platform: | Size: 106496 | Author: 微笑利刃 | Hits:

[AlgorithmFormula_Numerical_Analysis

Description: 数值分析中用于求近似值的算法、二分法解方程、变步长梯形求积分的算法。是在Linux下用C++实现的。用G++编译。 配合华中科大的那本著名的“数值分析”。李庆扬编著。 用来交作业很好。 在本压缩包里面包含的是: HalfDevision.d 二分法解方程 LagrgIn.d 拉格朗日差值公式-求近似值 NewtonFwIn.d 牛顿前插公式-求近似值 NewtonItera.d 牛顿迭代法-求近似值 VarStpTrpzoItg.d 变步长梯形积分公式 -Used for numerical analysis of approximation algorithms, black-and-white solution of equations, variable step integration algorithm for trapezoid. DAYANG China with that of the well-known " numerical analysis." Edited by李庆扬.交作业for good. In the compressed packet which is contained in: HalfDevision.d dichotomy LagrgIn.d Lagrangian difference equation solution formula- for NewtonFwIn.d Newton approximation formula Insert- NewtonItera.d approximation for Newton iteration- order approximation VarStpTrpzoItg . d variable step trapezoidal integration formula
Platform: | Size: 77824 | Author: xichen | Hits:

[OtherSurfacetest

Description: c/c++面试题,很多经典的题,比如 /a和b交换面试题2.cpp //如何将a、b的值交换,并且不使用任何中间变量? //解析: //简而言之,用异或语句比较容易,不用担心超界的问题。 //如果采用: // a=a+b // b=a-b // a=a-b //这样做的缺点就是如果a,b都是比较大的两个数,a=a+b时就会超界。 //而采用: // a=a^b b=a^b a=a^b 无须担心超界的问题,这样就比较好。 //参与运算的两数个对应的二进制位相异或,当对应的二进制位相异时,结果为1。参与运算数仍以补码 //形式出现-c/c++ surface test, many of the classic title, such as/a and b exchanged face questions 2.cpp// how to a, b the value of the exchange, and do not use any intermediate variable?// Analysis:// In short, the use of different or expressions easier to not have to worry about the problem of super-sector.// If:// a = a+ b // b = ab // a = ab // of the shortcomings of doing so is that if a, b are two relatively large number, a = a+ b when super-sector.// Used:// a = a ^ b b = a ^ b a = a ^ b not have to worry about the problem of super-sector, so that is better.// Participate in a number of operations corresponding to the two binary bit different, or, when the corresponding binary bit different, the result is 1. Involved in computing the number of still meeting code// form
Platform: | Size: 11264 | Author: 武林 | Hits:

[ELanguageCompile

Description: 此课设是if else 条件语句的翻译程序. 功能说明如下: 1.整体词法分析; 2.if else语法分析,递归下降法. 3.三地址形式代码格式输出; 4.变量符号表的实现,即先定义变量才可以使用; 5.出错提示,具体行数出错提示; 6.作用域初步设计.-This lesson is that if else conditional statements of the translation process. Functions as follows: 1. The overall lexical analysis 2.if else parsing, recursive descent method. 3. Third, address the form of output code format 4. The realization of the variable symbol table , that is, the definition of variables can be used 5. error prompts, error prompts specific number of rows 6. the scope of the preliminary design.
Platform: | Size: 37888 | Author: 卡哇伊 | Hits:

[Windows DevelopChapter20

Description: Hook编程。如何安装钩子过程,如何编写全局钩子,动态连接库里的全局变量数据共享问题分析。ADO数据库编程。在VB中利用ADO控件和ADO对象访问数据库,在VC中利用ADO技术访问数据库。-Hook programming. The process of how to install the hook, how to write global hooks, dynamic link library' s global variable analysis of data sharing. ADO database programming. In VB using ADO and ADO object access control database, the use of ADO in VC technology to access the database.
Platform: | Size: 1746944 | Author: shao | Hits:

[Documentsprobabalistic_PCA

Description: Probabilistic Principal Component Analysis – Latent variable models – Probabilistic PCA • Formulation of PCA model • Maximum likelihood estimation – Closed form solution – EM algorithm » EM Algorithms for regular PCA » Sensible PCA (E-M algorithm for probabilistic PCA) – Mixtures of Probabilistic Principal Component Analysers-Probabilistic Principal Component Analysis – Latent variable models – Probabilistic PCA • Formulation of PCA model • Maximum likelihood estimation – Closed form solution – EM algorithm » EM Algorithms for regular PCA » Sensible PCA (E-M algorithm for probabilistic PCA) – Mixtures of Probabilistic Principal Component Analysers
Platform: | Size: 263168 | Author: Tatyana | Hits:

[matlabMATLABlanguageandapplication

Description: < 控制系统计算机辅助设计--MATLAB语言与应用>>系统地介绍了国际控制界最流行的控制系统计算机辅助设计语言MATLAB,侧重于介绍MATLAB语言编程基础与技巧、数学问题的MATLAB求解、线性系统计算机辅助分析、控制系统与其他复杂系统的Simulink建模,控制系统的计算机辅助设计方法,包括串联控制器、状态反馈控制器、多变量系统频域设计、PID控制器设计、最优控制器设计、LQG/LTR控制器设计、H2=H1 最优控制、分数阶控制、自适应控制、模糊控制、神经网络控制、遗传算法优化控制等。本电子文档为其源码光盘内容,源码多多,利于学习参考。-"" Control System for Computer-Aided Design- MATLAB language and application of "" a systematic introduction to the international control of world s most popular computer-aided control system design language MATLAB, introduced the MATLAB language programming focusing on the foundation and skills, the MATLAB mathematical problem solving, computer-aided analysis of linear systems, control systems and other complex systems Simulink modeling, control system, computer-aided design methods, including serial controller, state feedback controller, multi-variable system, frequency-domain design, PID controller design, optimal controller design, LQG/LTR controller design, H2 = H1 optimal control, fractional order control, adaptive control, fuzzy control, neural network control, genetic algorithm to optimize control. This electronic document its source code CD-ROM content, source code lot, conducive to learning for reference.
Platform: | Size: 2137088 | Author: 任勇 | Hits:

[matlabBispectrumWavelets

Description: 用双谱和小波变换去除信号中加性高斯噪声的相关程序 1.实现单个变量的双谱分析程序 2.用傅立叶反变换求自相关函数的程序 3.用fft求取喜好频谱、功率谱、均方根谱、对数谱的程序 4.读取.wav语音信号后用小波去加信白噪声的程序 5.用各种小波和阀值对同一信号去加性噪声效果比较的程序 -Double-spectral and wavelet transform to remove the signal plus Gaussian noise procedures 1. To achieve a single variable pairs of spectral analysis procedures 2. Using Fourier inverse transform procedures for seeking self-correlation function 3. To strike a preference to use fft spectrum , power spectrum, RMS spectrum, several spectra of the procedure 4. read. wav audio signal with wavelet plus a letter to the white noise process 5. with a variety of wavelet and threshold on the same signal to additive noise Comparison program
Platform: | Size: 5120 | Author: 沈玉杰 | Hits:

[ELanguagecompiler

Description: c0 文法 优化编译器, 含公共子表达式删除,复制传播,活跃变量分析-c0 grammar optimizing compiler, containing common sub-expression delete, copy, disseminate, active variable analysis
Platform: | Size: 7892992 | Author: 张哲 | Hits:

[Industry researchff

Description: 析了变速恒频双馈风力发电系统的工作原理。结合风力机特性和双馈发电机特性,说明了变速恒频运行方式下的最优风能捕获策略,并介绍了风力发电系统的滑模变结构控制、自适应控制、鲁棒控制和人工神经网络控制。总结了变速恒频风力发电系统的发展趋势。-Analysis of a Variable Speed Constant Frequency Wind Power Generation System works. Combination of wind turbine characteristics and the characteristics of doubly-fed generator, variable speed constant frequency shows the optimal operating mode to capture wind energy strategy, and introduced wind power generation system with variable structure control, adaptive control, robust control and artificial neural networks control. Summarizes the VSCF wind power system trends.
Platform: | Size: 429056 | Author: wuxing | Hits:

[matlabLMS

Description: 一种改进的LMS算法及其在噪声对消中的应用。在分析传统定步长LMS算法和变步长LMS算法的基础上,提出了一种改进的变步长LMS算法。新算法利用瞬时误差绝对值三次方的指数形式和遗忘因子同时调整步长,更好的解决了收敛速度和稳态误差的矛盾-An improved LMS algorithm and its application in noise cancellation. In the analysis of the traditional fixed step and variable step size LMS algorithm based on LMS algorithm, a modified variable step size LMS algorithm. Absolute value of the new algorithm uses the instantaneous error and the form of cubic exponential forgetting factor while adjusting step, a better solution to the convergence speed and steady-state error of the contradictions
Platform: | Size: 1024 | Author: dapeng | Hits:

[Compress-Decompress algrithmsAnalysis-of-TCP-chat1

Description: 有数据到来/定义变量/收下数据放到变量里/算长度/做空格/空格与数据连成一起/放到标签框/让它动起来/如果没有关闭/继续送下一个/显示连接/否则显示关闭-With data coming from the/define variables/accept data into the variable/operator length/make space/space and the data are joined together/into the label box/it move it/If you do not close/continue to send to the next/display connection/otherwise show off
Platform: | Size: 89088 | Author: 林丹丹 | Hits:

[OtherAnalysis-of-UDP-chat1

Description: 数据到来/定义变量/取得数据放入变量/如果接收窗口第一次是空的就放进/如不是就换行加入-Data coming from the/define variables/get the data into the variable/if the receive window is empty for the first time into the/if not on the line joining
Platform: | Size: 21504 | Author: 林丹丹 | Hits:

[Energy industryVariable-Generation-Forecasting

Description: 报告首先进行了两种预测方法的探讨:对粗略的数据进行详细分析,还是对精确的数据进行简单分析,随后引出了数据价值的分析,具体包括现场数据和非现场数据,分析了数据误差的产生原因,指出仅建立上行观测站具有一定的局限性。报告最后指出改进的预测技术提高了所有电力市场参与者的效率,并且从长期和短期两方面分析了预测技术在电力运行中的诸多应用,最后阐述了预测技术所面临的挑战。-The report first carried out two methods of forecasting: A detailed analysis of raw data or simple data for accurate analysis of the data leads to the value of the subsequent analysis of specific data, including on-site and off-site data, analysis of the data error causes of the establishment of uplink stations that only have certain limitations. The report concludes that improved forecasting technology improves the efficiency of all electricity market participants, and both the long and short-term analysis of the forecasting techniques in power in the operation of many applications, and finally describes the challenges facing the technology forecast.
Platform: | Size: 3915776 | Author: 黄伟 | Hits:

[AlgorithmPrincipal-contens-analysis(PCA)

Description: 用于主成分分析(PCA),包括,原变量相关系数矩阵的特征向量和特征值的求解,主成分的提取,载荷值的确定等-Used principal component analysis (PCA), including the original variable correlation matrix eigenvectors and eigenvalues ​ ​ of the solution, the main component of the extract, load values ​ ​ to determine the other
Platform: | Size: 2048 | Author: 追风 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 18 »

CodeBus www.codebus.net