- 6
- 0
- 约6.67千字
- 约 7页
- 2017-08-23 发布于浙江
- 举报
2.3MATLAB矩阵基础
MATLAB基础及应用 To get started, select MATLAB Help or Demos from the Help menu.
The element type name must be terminated by the matching end-tag /name.
Could not parse the file: c:\matlab7\toolbox\ccslink\ccslink\info.xml
2.3.1直接输入法建立矩阵
A=[1 2 3;4 5 6;7 8 9]
A =
1 2 3
4 5 6
7 8 9
创建2~2pi间的余弦函数矩阵
x=0:pi/8:2*pi;
y=cos(x)
y =
Columns 1 through 10
1.0000 0.9239 0.7071 0.3827 0.0000 -0.3827 -0.7071 -0.9239 -1.0000 -0.9239
Columns 11 through 17
-0.7071 -0.3827 -0.0000 0.3827 0.7071 0.9239 1.0000
创
原创力文档

文档评论(0)