系统建模与仿真实验课的代码

本代码为系统建模与仿真课三次实验的内容。 详情请下载附件。

应用介绍

此项目是系统建模与仿真实验课的代码。

实验课1的部分数据:

A = magic(3);

B = A(1:2,:);

C = A(:,1:2);

D = A(2:3,2:3);

E = B*C;

a = eig(A);

AA = A';

AAA = inv(A);

d = det(A);

F = [2 3 6;1 7 5;9 3 8];

G = A*F;

H = A.*F;


for m = 1:5

    for n = 1:5

        if m == n

            a(m,n) = 2;

        elseif abs(m-n) == 2

            a(m,n) = 1;

        else

            a(m,n) = 0;

        end

    end

end


load('AA.dat');

subplot(3,1,1);

a = plot(AA(:,1), AA(:,2));

grid on

set(a,'Color',[0 0 0]);

set(a,'linestyle','-');

xlabel('时间(s)');

ylabel('\alpha(m)');

legend('曲线1');

subplot(3,1,2);

b = plot(AA(:,1), AA(:,3));

grid on

set(b,'Color',[1 0 0]);

set(b,'linestyle','--');

xlabel('时间(s)');

ylabel('\beta(deg)');

legend('曲线2');

subplot(3,1,3);

c = plot(AA(:,1), AA(:,4));

grid on

set(c,'Color',[0 1 0]);

set(c,'linestyle','-.');

xlabel('时间(s)');

ylabel('y(m)');

legend('曲线3');

....................想了解更多请下载附件。

文件列表(部分)

名称 大小 修改日期
AA.dat1.37 KB2020-01-18
test1.m0.13 KB2020-01-18
test2.m0.09 KB2020-01-18
test3.m0.21 KB2020-01-18
funcu.m0.04 KB2020-01-18
funcx1.m0.04 KB2020-01-18
funcx2.m0.03 KB2020-01-18
funcy.m0.04 KB2020-01-18
test1.m0.53 KB2020-01-18
test2.m0.46 KB2020-01-18
integration.slx19.42 KB2020-01-18
Intercept_cruise_fcn.m0.91 KB2020-01-18
result1.mat165.50 KB2020-01-18
result2.mat165.35 KB2020-01-18
result3.mat165.30 KB2020-01-18
result4.mat163.27 KB2020-01-18
result5.mat161.69 KB2020-01-18
checksumOfCache.mat0.23 KB2020-01-18
simulink_cache.xml0.18 KB2020-01-18
varInfo.mat0.25 KB2020-01-18
checksumOfCache.mat0.23 KB2020-01-18
simulink_cache.xml0.19 KB2020-01-18
varInfo.mat0.24 KB2020-01-18
statespace.slx18.17 KB2020-01-18
sub.slx17.43 KB2020-01-18
S_example3.mdl7.67 KB2020-01-18
S_example3.slxc3.50 KB2020-01-18
S_example4.mdl6.75 KB2020-01-18
S_example4.slxc3.80 KB2020-01-18
S_example_3.m0.26 KB2020-01-18

立即下载

相关下载

[系统建模与仿真实验课的代码] 本代码为系统建模与仿真课三次实验的内容。 详情请下载附件。

评论列表 共有 0 条评论

暂无评论

微信捐赠

微信扫一扫体验

立即
上传
发表
评论
返回
顶部