搜索资源列表
Matlab 牛顿插值法
- x=a:(b-a)/n:b; %插值节点 y=f(x); plot(x,y,'b') %用蓝色线作被插函数图象 hold on z=a:(b-a)/(2*n):b; n=length(x); for j=2:n for i=n:-1:j y(i)=(y(i)-y(i-1))/(x(i)-x(i-j+1));%计算差商 end end u=y(n); m=length(z); for j=1:m for i=n-1:-1:1 u=y(i)
ziegler
- 传统PID的整定方法Z-N法,有助于大家快速整定参数,一起讨论哦-The traditional PID tuning method ZN method to help you quickly tuning parameters, and discuss Oh
matlab-windows
- MATLAB R14 Programı n License sunucusu üzerinden kurulumu: MATLAB programı nı n eski versiyonunu kaldı rı nı z. MATLAB 2 ş ekilde yüklenebilmektedir. A) Sadece istenen MATLAB bileş enlerinin yüklenmesi B
filter0
- Useing the MATLAB command remez to obtain a low pass filter z(n) with a cutof frequency of 40 Hz at a sample rate of 1000 Hz.
CordFitIdeal
- 坐标转换:已知n个点在a,b两坐标系中的坐标值,采用优化方法求转换关系(标准的7参数转换关系,x,y,z的移动,x,y,z的旋转,以及缩放系数)ps:附带空间旋转公式。input: points in A and B。 output:transfer relationship (u,v,w: shit of x,y,z。 a,b,g: rotate of x,y,z 。k:zoom)-Coordinate Transfer:A,B are tow coordinates. This progra
Temperature_Dependence
- Temperature Dependence of the concentration n electrons in the conduction band of n type semiconductor.
yalmip
- matlab用于求解规划问题的工具包 推荐把这个工具整合到matlab中去,这个工具是私人的,不过大家都可以免费下载使用。下载后,只要在matlab中添加路径就可以使用这工具箱。 正在吸引我的是,这个工具箱建立了一种新的数据类型,使所有规划问题都整合在一起。 举例如下: 已知非线性整数规划为: Max z=x1^2+x2^2+3*x3^2+4*x4^2+2*x5^2-8*x1-2*x2-3*x3-x4-2*x5 s.t. 0<=xi<
PID-Matlab
- :针对PID参数复杂烦琐的整定过程这一问题,基于MATLAB/Simulink仿真环境,模拟工程稳 定边界法的PID参数整定策略和步骤,提出了一种简单有效的PID参数整定方法.与通常的整定方法 比较,其优点是非常直观、完全可视化操作、省去了编程的工作量.仿真结果表明该方法具有良好的收 敛性,使得控制系统动态性能得到有效改善,并且很大程度上减少了工作量.-Abstract:The process of PID parameters turning is complicated and
five-matlab-codes
- 1、画出函数y=x*sin(x) 2、用曲面表示z=x^2+y^2 3、创建n阶魔方矩阵,n能被4整除 4、三维图形影片动画 5、画出N=100,p=0.5情况下二项分布的概率 特性曲线-1, draw the function y = x* sin (x) 2, using surfaces to describe z = x ^ 2+ y ^ 2 3, create a cube matrix of order n, n be divisible by 4 4,
znpidtuning
- Z-N算法,我做了几个事例,希望对大家有用。-ZN algorithm, I do a few examples of the hope that useful.
matlab
- 基于遗传算法的投影寻踪代码,提供大家下载,方便查阅-【研学堂】【代码】投影寻踪代码,请验用!! function Qa=Project_Pursuit(X,a,Alpha) 输入参数列表 X 本指标矩阵,n×p的矩阵,每一行为一个样本, Xij表示第i行第j列指标,X是否已经归一化均可 a 投影向量,1×p的矩阵,元素取值范围-1~1,要求其元素平方和等于1 Alpha 窗口半径系数,典型取值0.1
KS
- matlab 的灵敏度分析。对回路成型,Z-N整定的灵敏度的分析~比较它们的性能差别- Sensitivity analysis of the matlab ,loop forming, ZN tuning sensitivity analysis to compare the performance difference
d2
- 基于Z-N整定PID参数的代码,PID最优的参数求取,用matlab程序代码实现这一过程-Based on the setting of PID parameters of Z-N code
matlab
- 如何读取数据textread,例如通过textread( x_inlet.txt )我们可以把文件x_inlet.txt中的数据存储到数组x中,且x的维数和大小会自动与文件x_inlet.txt的相匹配。 如何画三维曲面图surf,例如 surf(x,y,z),其中xy分别为n,m个元素的一维数组时,z必须为n*m的二维数组。-How to read the data textread, for example, through x textread ( x_inlet.txt ) we
matlab
- 如何读取数据textread,例如通过textread( x_inlet.txt )我们可以把文件x_inlet.txt中的数据存储到数组x中,且x的维数和大小会自动与文件x_inlet.txt的相匹配。 如何画三维曲面图contour,例如 contour(x,y,z),其中xy分别为n,m个元素的一维数组时,z必须为n*m的二维数组。 -How to read the data textread, for example, through textread (x_inlet.txt)
levelset_segmentation_biasCorrection_v1
- C. Li, R. Huang, Z. Ding, C. Gatenby, D. N. Metaxas, and J. C. Gore, "A Level Set Method for Image Segmentation in the Presence of Intensity Inhomogeneities with Application to MRI", IEEE Trans. Image Processing, vol. 20 (7), pp. 2007-2016
Kalman
- 对于一个含有明显噪声的心电信号进行卡尔曼滤波处理,最大程度地 “还原”信号,达到去除噪声的目的。卡尔曼滤波(看成维纳滤波的一种实现方法)的特点如下: a) 是根据上一状态的估计值X(n-1)和当前状态的观测值Z(n)推出当前状态的估计值X(n)的滤波方法,不需要用过去的全部观测值。 b) 它是用状态方程和递推方法进行估计的,因而卡尔曼滤波对信号的平稳性和时不变性不做要求。 c) 使用全部观测值保证平稳性。(Kalman in matlab,if you need it,please dow
Z-N法整定PID控制器参数
- 用MATLAB程序软件完成临界比例带法对PID控制器的参数整定,并求出PID控制器的三个参数Kp,Ti,Td。最后绘制出参数整定前后的单位阶跃响应图进行比较。(The parameters of PID controller are adjusted by MATLAB software and the three parameters Kp, Ti and Td of PID controller are obtained. Finally, the unit step response di
用Z-N法实现P,PI,PID控制的参数整定
- 用MATLAB程序软件完成Z-N法对控制器的参数整定,实现P,PI,PID控制器的分别参数整定,并求出控制器的控制参数Kp,Ti,Td。最后绘制出不同控制器控制下的及参数整定前后的单位阶跃响应图进行比较。(MATLAB program software is used to complete the parameter tuning of the controller by Z-N method. The parameters of P, PI, PID controller are adjus
粒子群算法优化pid源码 matlab仿真
- 粒子群算法(PSO)整定pid控制参数,比传统Z-N整定方法要好,内附matlab程序与simulink模型(Particle swarm optimization (PSO) is better than traditional Z-N tuning method in tuning PID control parameters. It includes matlab program and Simulink model.)