搜索资源列表
zxcv
- 一些matlab程序,对初学者挺有用的,值得一看,关于数值分析的。-some Matlab procedures for beginners quite useless, an eye-catcher, on the numerical analysis.
curve
- 用MATLAB实现数值分析中插值与曲线拟合-Numerical analysis in MATLAB realization of the interpolation and curve
cpsy3
- 语法分析 要求:在实验一的基础上,对符号表中的单词采用自底向上的分析方法进行语法分析,对不符合给定的文法的字符串,给出错误信息。 内容:给定描述语法的文法为: E→E+T|E-T|T T→T*F|T/F|F F→F^P|P P→i 注:i为实验一中分析得到的整型数值型数据,+、-、*和/为实验一文法二所描述的算符。 -The syntax requirements: In the experiment on the basis of bottom-up analy
compiler1
- 词法分析 对输入的字符串进行词法分析,形成词法分析产生的符号表。 内容:给定描述词法的文法为: 文法一:〈整型数值型数据〉→[+|-]〈数字〉〈数字〉* 〈数字〉→0|1|2|3|4|5|6|7|8|9 文法二:〈算符〉→+|-|*|/ 利用以上二个文法对从键盘输入的字符串进行词法分析,对符合这两个文法的字符串建立单词符号表;对不符合这两个文法的字符串给出错误信息。编程序实现该功能,并上机调试。 -Lexical analysis, lexical analysis
compiler2
- 语法分析(一) 在实验一的基础上,对符号表中的单词采用自顶向下的分析方法进行语法分析,对不符合给定的文法的字符串,给出错误信息。 内容:给定描述语法的文法为: E→E+T|E-T|T T→T*F|T/F|F F→i 注:i为实验一中分析得到的整型数值型数据,+、-、*和/为实验一文法二所描述的算符。 使用的数据结构: 1.定义一个结构体,利用该结构体定义一个数组stable,用来存放字符串中字符的属性(类型class和值value)。(与实验一同用) 2.定义
data-analysis
- 数值分析算法与应用,比较详细的描述的数值分析中迭代的基本内容-Numerical analysis algorithms, iterative numerical analysis, a more detailed descr iption of the basic content
Ode
- 西工大数值分析大作业,欧拉与龙格库塔,仿真-NPU numerical analysis operations, Euler and Runge-Kutta simulation
MATLAB
- 数值分析理论中关系hmt算法的matlab程序演示过程-Numerical analysis the theoretical relationship hmt algorithm matlab program during the demonstration
program
- MATLAB数值计算案例分析,CC2430点对点通信及CC2430多功能综合测试-MATLAB numerical case studies, CC2430 and CC2430 multi-point communication integrated test
CSharp
- C#数值算法分析,涵盖具体的说明材料,代码直接引用-C# Numerical analysis of algorithms, covering specific illustrative material, code direct reference
matlab-function
- 数值分析中各种代码几何,包括差值函数,牛顿逼近,以及微分方程的解。所以优化参考。-Numerical analysis of various geometric code, including the difference between the functions, Newton approximation, as well as solving differential equations. So Optimization Reference.
matlab_2_code
- matlab 数值分析 书中代码详解 齐全 例题和答案都有-Detailed numerical analysis book matlab code examples and answers have complete
matlab
- 数值分析,各类上机matlab计算程序实例,可直接输入得到结果。-Numerical analysis, various types of machine matlab computing instance, can directly enter the result.
Voice_Rec
- matlab它是一种科学计算软件, 专门 以矩阵的形式处理数据。 MATLAB 将高性能的数值计算和可视化集成在一起, 并提供了大量的内置函数, 从而被广泛地应用于科学计算、 控制系统、 信息处理 等领域的分析、仿真和设计 -matlab is very important
[caetecc.com]DUNCAN-CHANG
- 该损伤模型通过 商用有限元软件ABAQUS /Explicit 的用户子程序VUMAT 实现,并使用该模型对碳纤维增强环氧树脂 复合材料层合板在横向低速冲击作用下的损伤和变形行为进行预测分析. 数值仿真的结果与试验结 果进行了比较,吻合良好,验证了该模型的有效性.-Through coding user subroutine VUMAT of finite element software ABAQUS /explicit, and applied the model to an
vumat_hashin_stress_zerosetting_1
- 该损伤模型通过 商用有限元软件ABAQUS /Explicit 的用户子程序VUMAT 实现,并使用该模型对碳纤维增强环氧树脂 复合材料层合板在横向低速冲击作用下的损伤和变形行为进行预测分析. 数值仿真的结果与试验结 果进行了比较,吻合良好,验证了该模型的有效性.-Through coding user subroutine VUMAT of finite element software ABAQUS /explicit, and applied the model to an
06_UT 数值
- 使用数值积分法对目标轨道进行估计,并对误差传播进行分析(The numerical integration method is used to estimate the target orbit, and the error propagation is analyzed .)
PL0词法分析程序
- 三、 实验要求 1. 使用 PL/0 语言编写程序,实现输出斐波那契数列前 20 项数值。 2. 从 PL/0 编译程序源码中抽出词法分析部分,构建 PL/0 独立词法分析程序。功能:输入为 PL/0 源程序, 输出为单词符号的序列;对于标识符和无符号整数,显示单词种别和单词自身的值两项内容;对于其他单词符 号,仅显示其单词种别。 3. 使用 AutoFlowchart 画出独立词法分析程序的程序流程图,并分析每部分的功能和特点。(Iii. Experimental requ