- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
自控控制理论实验一自控控制理论实验一
Using Toolbox Path Cache. Type help toolbox_path_cache for more info.
To get started, select MATLAB Help from the Help menu.
7.1.1MATLAB语言平台
练习MATLAB命令的基本操作
1)常数矩阵输入
a=[1 2 3]
a =
1 2 3
a=[1;2;3]
a =
1
2
3
b=[1 2 5]
b =
1 2 5
b=[1 2 5];
a
a =
1
2
3
a
ans =
1 2 3
b
b =
1 2 5
b
ans =
1
2
5
c=a*b
c =
1 2 5
2 4 10
3 6 15
c=a*b
??? Error using == *
Inner matrix dimensions must agree.
a=[1 2 3;4 5 6;7 8 0]
a =
1 2 3
4 5 6
7 8 0
a^2
ans =
30 36 15
66 81 42
39 54 69
a^0.5
ans =
0.5977 + 0.7678i 0.7519 + 0.0979i 0.5200 - 0.4680i
1.4102 + 0.1013i 1.7741 + 0.6326i 1.2271 - 0.7467i
1.2757 - 1.0289i 1.6049 - 1.0272i 1.1100 + 1.6175i
2)作循环命令程序
makesum=0;
for i=1:1:100
makesum=makesum+i;
end
makesum
makesum =
5050
3)分别执行下列命令
. a=[1 2 3;4 5 6;7 8 0]
a =
1 2 3
4 5 6
7 8 0
poly(a)
ans =
1.0000 -6.0000 -72.0000 -27.0000
rank(a)
ans =
3
det(a)
ans =
27
trace(a)
ans =
6
inv(a)
ans =
-1.7778 0.8889 -0.1111
1.5556 -0.7778 0.2222
-0.1111 0.2222 -0.1111
eig(a)
ans =
12.1229
-0.3884
-5.7345
help help
HELP On-line help, display text at command line.
HELP, by itself, lists all primary help topics. Each primary topic
corresponds to a directory name on the MATLABPATH.
HELP TOPIC gives help on the specified topic. The topic can be a
command name, a directory name, or a MATLABPATH relative partial
pathname (see HELP PARTIALPATH). If it is a command name, HELP
displays information on that command. If it is a directory name,
HELP displays the Table-Of-Contents for the specified directory.
文档评论(0)