-
control
说明: 压缩包里面包含三个程序,分别是Nyquist图和bode图仿真,已知传递函数,求脉冲和阶跃响应,另一个自己研究一下就可以知道的(Compressed packet which contains three procedures, namely Nyquist diagram and bode diagram simulation, known transfer function, and impulse and step response, and the other to look at their own will be able to know)
- 2009-08-12 11:56:20下载
- 积分:1
-
matlab-uses-100Examples
包括matlab使用的经典的一百个例子。能让你从中总结出matlab的精髓(Including the use of matlab classic example of the 100. Allows you to sum up the essence of matlab)
- 2011-05-12 19:58:21下载
- 积分:1
-
APF
在simulink平台搭建了有源电力滤波器的仿真模型,配电网电压为400V。可用于课程设计。(The simulation model of active power filter is built on the Simulink platform, and the distribution network voltage is 400V.It can be used for curriculum design.)
- 2018-08-23 10:05:23下载
- 积分:1
-
RotFe_ib
利用matalab编制的转子动力学计算软件。其中模型利用有限元建模,只是自由度较少。(matalab prepared by the use of rotor dynamics calculation software. Which model using finite element modeling, but less freedom.)
- 2006-11-07 11:21:23下载
- 积分:1
-
OFDM
matlab code for OFDM Trasnmitter and Receiver (Matlab Code)
- 2015-02-03 15:55:30下载
- 积分:1
-
shuangfengchazhi
基于mATLAB的双峰谱线插值,用于谐波的检测分析(Bimodal line interpolation based on mATLAB for harmonic detection and analysis)
- 2020-06-24 11:20:02下载
- 积分:1
-
edit_distances
Edit Distance
Levenstin Distance
and etc
- 2012-03-26 14:49:09下载
- 积分:1
-
huff
huffman and entropy approach
- 2009-04-18 16:34:09下载
- 积分:1
-
511111111
matlab时频分析配套源码第3章的程序,请大家共享(Matlab time-frequency analysis supporting source Chapter 3, please share)
- 2007-04-11 18:50:20下载
- 积分:1
-
1234435
用matlab 7.0编写的滑模变结构仿真的例子。(S-function for continuous state equation
function [sys,x0,str,ts]=s_function(t,x,u,flag)
switch flag,
Initialization
case 0,
[sys,x0,str,ts]=mdlInitializeSizes
Outputs
case 3,
sys=mdlOutputs(t,x,u)
Unhandled flags
case {2, 4, 9 }
sys = []
Unexpected flags
otherwise
error([ Unhandled flag = ,num2str(flag)])
end
mdlInitializeSizes
function [sys,x0,str,ts]=mdlInitializeSizes
sizes = simsizes
sizes.NumContStates = 0
sizes.NumDiscStates = 0
sizes.NumOutputs = 3
sizes.NumInputs = 1
sizes.DirFeedthrough = 1
sizes.NumSampleTimes = 0
sys=simsizes(sizes)
x0=[]
str=[]
ts=[]
function sys=mdlOutputs(t,x,u)
x11d=sin(pi*t/2)
x21d=cos(pi*t)
x31d=1
sys(1)=x11d
sys(2)=x21d
sys(3)=x31d
)
- 2012-10-19 11:43:12下载
- 积分:1