• 大小: 0.76M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-15
  • 语言: Matlab
  • 标签: 其他  

资源简介

matlabSimulink程序源代码和模型.zip

资源截图

代码片段和文件信息

% ch1example1prg1.m
g=9.8;  % 重力加速度
v=0;    % 设定初始速度条件
s=0;    % 设定初始位移条件
t=0;    % 设定起始时间
dt=0.1; % 设置计算步长
N=20;   % 设置仿真递推次数. 仿真时间等于N与dt的乘积
for k=1:N
  v=v+g*dt;                 % 计算新时刻的速度
  s(k+1)=s(k)+v*dt;         % 新位移
  t(k+1)=t(k)+dt;           % 时间更新
end
% 理论计算 以便与仿真结果对照
t_theory=0:0.01:N*dt;       % 设置解析计算的时间点
v_theory=g*t_theory;        % 解析计算的瞬时速度
s_theory=1/2*g*t_theory.^2; % 解析计算的瞬时位移
% 作图: 仿真结果与解析结果对比
t=0:dt:N*dt;
plot(ts‘o‘ t_theorys_theory ‘-‘);
xlabel(‘时间 t‘); ylabel(‘位移 s‘);
legend(‘仿真结果‘‘理论结果‘);

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        8789  2007-07-02 17:58  algebraiclooptest.mdl
     文件       13247  2007-06-30 13:37  AnalogtoDigitalandDA_Demo.mdl
     文件       15196  2007-06-30 12:24  AnalogtoDigitalandRateConverterDemo.mdl
     文件         681  2007-10-22 19:42  ch1example1prg1.m
     文件         621  2007-06-19 07:23  ch1example1prg2.m
     文件         645  2007-06-23 08:00  ch1example2prg1.m
     文件         600  2007-06-19 07:27  ch1example2prg2.m
     文件         924  2007-06-19 07:32  ch1example3prg1.m
     文件         394  2007-10-22 12:50  ch1example3prg2.m
     文件        1106  2007-06-19 07:35  ch1example4prg1.m
     文件         987  2007-10-22 12:49  ch2example10prg1.m
     文件         422  2007-10-14 18:33  ch2example10statefun.m
     文件        1383  2007-10-22 12:49  ch2example11prg1.m
     文件         547  2007-06-24 14:16  ch2example11statefun.m
     文件        7658  2007-06-25 16:11  ch2example12.mdl
     文件       13160  2007-06-25 17:41  ch2example12mdl2.mdl
     文件       14612  2007-06-26 07:52  ch2example13.mdl
     文件       15602  2007-06-26 11:14  ch2example14.mdl
     文件        9893  2007-06-27 08:04  ch2example15.mdl
     文件        1262  2007-06-27 08:35  ch2example15data.txt
     文件        1914  2007-10-07 12:54  ch2example15Sfun.m
     文件         335  2007-06-27 08:26  ch2example15SfunB.m
     文件        8088  2007-06-27 10:50  ch2example16.mdl
     文件       33873  2007-06-27 11:19  ch2example16sfun.c
     文件       24576  2007-06-27 11:19  ch2example16Sfun.dll
     文件        1343  2007-06-27 11:19  ch2example16sfun.h
     文件        1914  2007-10-07 12:54  ch2example16Sfun.m
     文件        6483  2007-06-27 11:19  ch2example16sfun_mex.c
     文件        9191  2007-06-27 14:10  ch2example17.mdl
     文件        1350  2007-10-07 12:54  ch2example17Sfun.m
     文件        9919  2007-06-27 17:35  ch2example18A.mdl
............此处省略177个文件信息

评论

共有 条评论