-
half_band_filter
半带滤波器的设计。半带滤波器在设计准确重建性能的滤波器组方面有重要作用。(half-band filter design. Half-band filters in the design performance of accurate reconstruction filters play an important role.)
- 2007-01-12 18:15:40下载
- 积分:1
-
julijuzhen
利用元包数组来存放计算过程的结果,利用matlab实现多元统计学中的聚类算法(计算距离矩阵)。(million packets using arrays to store the calculation results Matlab achieve multiple use of statistical clustering algorithm (distance matrix calculation).)
- 2007-05-12 21:43:35下载
- 积分:1
-
figure2epsV1_2
CONVERTING FIGURES TO MATRIX IN MATLAB
- 2013-09-10 18:03:23下载
- 积分:1
-
bianpojiegousheji3
本文基于毕肖普法和蒙特卡洛法,利用MATLAB编程软件计算了边坡结构的失效概率Pf和对应可靠指标β.在计算上述Pf和对应β时,考虑了土体三个主要基本参数(重度γ、内摩擦角(Ψ)、粘聚力c)的随机特性.利用MATLAB程序的计算结果表明,随机变量对边坡可靠度的影响与基本随机参数对抗滑反力的贡献大小有关,即,贡献大的基本随机参数,它的随机波动对结构失效概率Pf的影响也较大,反之亦然.另外,基于MATLAB的算例计算结果还表明:边坡结构失效概率Pf对内摩擦角(Ψ)较敏感,而对重度y和粘聚力c次之.其次,当同时考虑三个随机变量的联合波动对Pf的影响时发现,当它们在小范围内随机波动时,其联合特性对Pf的影响较敏感,但当它们在大范围内随机波动时,Pf主要受敏感随机变量的影响,而三个随机变量联合作用对Pf的影响和敏感随机变量(Ψ)单独作用时相差不大.由此可见,在实际边坡工程可靠性分析中,土体内摩擦角起主要作用,不容忽视.(Based Bishop method and Monte Carlo method, using MATLAB programming software to calculate the failure probability Pf and the corresponding slope reliability index β structure in the calculation of the above Pf and the corresponding β, consider the three main basic soil parameters (severe γ internal friction angle (Ψ), cohesion c) of the random nature of calculation results using MATLAB program shows that the influence of random variables on the reliability of the basic random slope parameters against anti- slip contribution to the size of the force , that is , the contribution the basic parameters of large random , random fluctuations which affect the probability of structural failure Pf is also larger , and vice versa addition, the calculation based on MATLAB numerical results also show that : the structure of slope failure probability Pf internal friction angle (Ψ) more sensitive , while severe and cohesion c y followed . Secondly, when taking into account the impact of the joint fl)
- 2014-01-10 17:36:46下载
- 积分:1
-
Getting-Started-with-HW
采用zedboard、zynq等在matlab的平台上进行硬件协仿真的,文章介绍Getting Started with HW,环境的搭建和调试方式。(Using zedboard, zynq etc. on matlab platform for hardware co-simulation, the article describes the Getting Started with HW, build and debug mode environment.)
- 2014-01-10 17:35:15下载
- 积分:1
-
GAOT
说明: 遗传算法matlab工具
1.工具箱文件拷贝至Matlab文件夹下,具体路径为:C:\program files\MATLAB\R2009a\toolbox。
2.工具箱路径加入Matlab文件路径之中。
流程为:File-->Set Path-->Add Folder。即,将C:\program files\MATLAB\R2009a\toolbox\文件夹加入该路径系统中。
3 重新启动Matlab,运行即可。
4 一般情况下,会出现如下情况。
安装遗传工具箱后出现问题:Warning: Name is nonexistent or not a directory: \afs\eos\info\ie\ie589k_info
解决方案:
将C:\program files\MATLAB\R2009a\toolbox\文件夹下的startup.m文件中的路径“\afs\eos\info\ie\ie589k_info\”改为goat当前所在的目录,“C:\program files\MATLAB\R2009a\toolbox\”即可。(Genetic algorithm matlab tool 1. Matlab toolbox files are copied to the folder, the specific path is: C: \ program files \ MATLAB \ R2009a \ toolbox. 2. Matlab toolbox add the file path into the path. Process is: File-> Set Path-> Add Folder. That is, the C: \ program files \ MATLAB \ R2009a \ toolbox \ folder by adding the path system. 3 Restart Matlab, can be run. 4 Under normal circumstances, there will be the following. Problems after installing genetic toolbox: Warning: Name is nonexistent or not a directory: \ afs \ eos \ info \ ie \ ie589k_info \ Solution: C: \ program files \ MATLAB \ R2009a \ toolbox \ startup folder under the . m file path " \ afs \ eos \ info \ ie \ ie589k_info \" to the current directory where the goat, " C: \ program files \ MATLAB \ R2009a \ toolbox \" can be.)
- 2011-03-04 16:12:07下载
- 积分:1
-
pack_emd
2007版EMD源程序,可供研究EMD,HHT等方面的朋友使用(2007 edition of EMD source for research EMD, HHT, and other aspects of the use of a friend)
- 2007-04-17 16:04:44下载
- 积分:1
-
6_1
1. 定义一个抽象学生类CStudent,它具有公有成员函数Average(),该函数用于计算学生的平均分,函数为虚函数;定义一个文科学生类CStudentLiberalArts,它是类CStudent的派生类,并以公有方式派生,它具有的成员有:
1) 保存英语、政治、数学、地理和历史、美术成绩的整形成员变量;
2) 设置上述变量的公有成员函数;
3) 输出上述变量的公有成员函数;
4) 公有的成员函数Average()用于计算学生的平均分;
定义一个理科学生类CStudentScience,它是类CStudent的派生类,并以公有方式派生,它具有的成员为:
1) 保存英语、物理、数学、化学和计算机、程序设计成绩的整形成员变量;
2) 设置上述变量的公有成员函数;
3) 输出上述变量的公有成员函数;
4) 公有的成员函数Average()用于计算学生的平均分;
编写主函数,并测试以下内容:
1) 定义一个CStudent的指针数组pStu,数组长度为4;
2) 动态创建2个文科学生的对象,地址存于pStu数组的0-1个元素内;
3) 动态创建2个理科学生的对象,地址存于pStu数组的2-3个元素内;
4) 利用while循环调用数组里每个元素的计算平均成绩操作;
释放动态分配的空间,确保必要的析构函数能被调用。
(1 define an abstract class student CStudent, it has a public member function Average (), this function is used to calculate the student s average points function as virtual function definition of a liberal arts student class CStudentLiberalArts, it is the class CStudent derived class, and public be derived, which has members are:
1) Save English, shaping member variables politics, mathematics, geography and history, art achievements
2) Set the above variables public member function
3) public member function of the output of the variable
4) public member function Average () is used to calculate the average student s points
The definition of a science student class CStudentScience, it is the class CStudent derived class, and public manner derived, which has members as follows:
1) Save English, physics, mathematics, chemistry and computer programming achievement shaping member variables
2) Set the above variables public member function
3) public member function of t)
- 2014-10-20 15:29:16下载
- 积分:1
-
KalmanFilterWay
卡尔曼 滤波 去除噪声 测定俯仰角 方位角 距离 等等(kalman filter)
- 2016-12-27 14:46:30下载
- 积分:1
-
弥散对比
说明: 数值模拟波浪力,根据莫里森方程,求单一深度波浪力数值模拟的matlab语言程序(Numerical simulation of wave forces)
- 2020-06-25 05:40:02下载
- 积分:1