CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 预测分析

搜索资源列表

  1. 左递归文法分析源代码

    0下载:
  2. 输入已经消除左递归的以及提取公共左因子的LL(1)文法,再输入相应的表达式,若分析成功,则在递归输出过程中输出\"acc\",若不成功,则有相应的报错以及位置指名。注意,要把同一个非终结符的产生式分成单个输入。他会自动计算first,follow,预测分析表的构造,但并不输出。-importation has been eliminated and left recursive public from the left-LL (1) grammar, further impo
  3. 所属分类:编译器/词法分析

    • 发布日期:2014-01-15
    • 文件大小:33947
    • 提供者:赵旋
  1. LL1文法分析ForWin

    0下载:
  2. 录入合法的LL(1)文法,将输出LL(1)预测分析表- Inputs legitimate LL (1) the grammar, will output LL (1) to forecast the analytical table
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:48864
    • 提供者:吴斌
  1. 预测

    0下载:
  2. 数据预测算法,主要是一元n次方程的回归预测实现。* 预测分析--本算法只适用于有明显线性趋势的数据 * 默认为一元二次曲线方程法 * * 本程序主要涉及有两个算法 * 1.用最小二乘原理找到线性方程组的系数和常数。 * 2.解线性方程组 * 本程序在解线性方程组中,由于考虑到收敛性问题未采用迭代法,而是采用Gauss-Jordan消去法来解决。-data prediction algorithm is mainly one yuan n equation forecast to achieve
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2141
    • 提供者:吴名
  1. LL(1)文法分析

    0下载:
  2. 求一个文法的first,follow,select集判断该文法是不是LL(1)文法,生成该文法的预测分析表,输入字符串的分析表,以及相应的语法树。
  3. 所属分类:Windows编程

    • 发布日期:2009-06-29
    • 文件大小:49471
    • 提供者:gudanping
  1. 语音的线性预测滤波

    0下载:
  2. 语音信号的线性预测分析
  3. 所属分类:语音合成与识别

    • 发布日期:2009-12-17
    • 文件大小:1023
    • 提供者:asdewq
  1. wangyh.rar

    0下载:
  2. 语音信号处理中使用线性预测分析方法分析语音信号,编程语言为C语言,开发环境为Visual C++ 2005,Speech signal processing using linear prediction analysis of speech signal analysis methods, programming languages for the C language development environment for Visual C++ 2005
  3. 所属分类:Speech/Voice recognition/combine

    • 发布日期:2017-04-02
    • 文件大小:115096
    • 提供者:孙家冕
  1. LL1ParsingCode

    0下载:
  2. LL1语法分析程序,输入文法表达式能够自动输出预测分析表,判断是否为LL1文法,还可以再输入任意的一个句子,然后对其进行分析,给出分析进栈出战的详细过程-LL1 parser, enter the grammar of expression that can automatically predict the output table to determine whether the LL1 grammar, you can enter any of a sentence, and then a
  3. 所属分类:Compiler program

    • 发布日期:2017-04-05
    • 文件大小:4562
    • 提供者:张志宇
  1. GM

    0下载:
  2. 灰色理论的算法,用于对常用灰色模型的预测分析-Gray Theory of algorithms, commonly used for the analysis of the gray model forecast
  3. 所属分类:Education soft system

    • 发布日期:2017-04-04
    • 文件大小:1091
    • 提供者:wake
  1. markov

    1下载:
  2. 在vb环境下实现马尔柯夫链功能,对未来进行预测分析。-Vb environment to achieve the Markov chain function analysis to predict the future.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2016-05-11
    • 文件大小:4096
    • 提供者:tana
  1. Syntax_Analysis-LL(1)-LCC

    0下载:
  2. 编译原理之语法分析LL(1) (1)消除左递归 (2)求First集 (3)求Follow集 (4)预测分析表 (5)预测分析过程-Compiler theory of parsing LL (1) (1) elimination of left recursion (2) Find First Set (3) Find Follow set (4) prediction of sheet (5) prediction analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-03-22
    • 文件大小:66567
    • 提供者:
  1. syntax

    0下载:
  2. LL(1)文法的实现。具体设计要求如下: 1. 可以使用任何语言来完成,例如:Java、C、C++。 2. 文法采用常用的方式进行描述,例如:S→aA。 3. 以文件方式读取文法。 4. 分别求出每一个非终结符FIRST 集FOLLOW集和SELECT集。 5. 画出预测分析表。 6. 判定读入的文法是否是LL(1)文法。 7. 给定的任意符号串判定是否是文法中的句子,将分析过程用计算机打印出来。 8. 查出文法中是否含有左递归或左公因子。若有则消除左公因子和左递
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:5713
    • 提供者:冯景航
  1. SyntaxAnalysisL-R

    0下载:
  2. 实现编译原理的LL(1)和LR(0) (1)语法分析LL(1) (2)语法分析LR(0) (3)输出分析过程如First、Follow集、预测分析表 (4)输出预测分析过程、LR(0)自动机 (5)对输入字符串的验证-Principle to achieve compile LL (1) and LR (0) (1) parsing LL (1) (2) parsing LR (0) (3) the output of the process, such
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:75985
    • 提供者:
  1. yufa

    0下载:
  2. VS2010编写的LL(1)语法分析器,first和follow集合,构造预测分析表,以及对输入进行分析!-LL parser, seeking first and follow sets, table structure prediction analysis, and analysis of the input grammar!
  3. 所属分类:Compiler program

    • 发布日期:2017-05-21
    • 文件大小:6213983
    • 提供者:jim
  1. Parsing

    1下载:
  2. 语法分析程序的设计与实现 方法2:编写LL(1)语法分析程序,要求如下: (1)编程实现算法4.2,为给定文法自动构造预测分析表; (2)编程实现算法4.1,构造LL(1)预测分析程序。 2. 方法3:编写语法分析程序实现自底向上的分析,要求如下: 构造识别所有活前缀的DFA。 构造LR分析表。 编程实现算法4.3,构造LR分析程序。 -Parser design and implementation of Method 2: preparat
  3. 所属分类:编译器/词法分析

    • 发布日期:2012-12-20
    • 文件大小:422797
    • 提供者:Eric
  1. 40节点预测

    0下载:
  2. 利用人工智能RNN进行数据预测分析,效果还可以(Using artificial intelligence RNN to carry out data prediction and analysis, the effect is also possible.)
  3. 所属分类:网络编程

    • 发布日期:2018-04-30
    • 文件大小:1024
    • 提供者:小白白白123
  1. 基于SVM的回归预测分析——上证指数开盘指数预测

    1下载:
  2. 基于SVM的回归预测分析——上证指数开盘指数预测(SVM Based Regression Prediction Analysis - Shanghai Stock Exchange Index Opening Index Forecast)
  3. 所属分类:人工智能/神经网络/深度学习

    • 发布日期:2018-05-01
    • 文件大小:224256
    • 提供者:潇潇飒飒
  1. 地下水新导则三模式预测(7000距离)

    0下载:
  2. 对地下水瞬时点源一维预测分析,直观反映点源下游污染物浓度情况(One dimensional prediction analysis of instantaneous point source of groundwater)
  3. 所属分类:其他

    • 发布日期:2018-05-01
    • 文件大小:404480
    • 提供者:吊炸天boom
  1. 实验二-LL(1)预测分析

    1下载:
  2. LL(1)预测分析,分析表和分析过程的界面友好(LL (1) forecast analysis, analysis table and analysis process friendly interface.)
  3. 所属分类:书籍源码

    • 发布日期:2018-10-22
    • 文件大小:111616
    • 提供者:小艾321
  1. python机器学习预测分析核心算法

    1下载:
  2. python机器学习预测分析核心算法的例程(Python machine learning prediction and analysis of core algorithm routines)
  3. 所属分类:数学计算

    • 发布日期:2020-11-27
    • 文件大小:256000
    • 提供者:domodo
  1. ARIMA预测

    1下载:
  2. ARIMA整合移动平均自回归模型,时间序列预测分析方法之一,可用于股价预测。(ARIMA integrates moving average autoregressive model and time series forecasting analysis method, which can be used for stock price forecasting.)
  3. 所属分类:仿真建模

    • 发布日期:2020-09-28
    • 文件大小:222208
    • 提供者:四夕c
« 1 23 4 5 6 7 8 9 10 ... 50 »
搜珍网 www.dssz.com