matlab零基础入门教程(matlab自学教程)
Matlab的一些基础功能
1. embedding functions,相当于储存在一个变数Variables里。
1. Embedding functions, equivalent to storing in a variable Variables.
sin(cos(pi))=cos(pi)=ans,sin(ans)
2. Variables变数:特殊的变数
2. Variables: special variables
Ans
I,j:复数
Inf:无限大
eps:无限小的数
NaN:不是一个数字
Pi:π
3.消除变数
3. Eliminate variables
Clear A=消除变数A
Clear =清空工作栏
4.数值显示为分数
4. The value is displayed as a score
5.语句后面加分号,不显示运算结果
5. Add a semicolon after the statement to not display the calculation result
6.方向键的上键盘,显示之前的指令
6. The upper keyboard of the arrow keys shows the previous instructions
输入向量和矩阵
- 横向量输入
- 1. Horizontal input
2.纵向量输入
2. Longitudinal input
3.矩阵乘法运算(注意区别)
3. Matrix multiplication operation (note the difference)
4.输入矩阵
4. Input matrix
5.选出矩阵中需要的元素
5. Select the required elements in the matrix
A(第几行,第几列)
6.替换矩阵中元素
6. Replace elements in the matrix
7.等差级数矩阵输入
7. Arithmetic progression matrix input
A=[i;j],等差为1
B=[i;j;k],等差为j
8.增广矩阵的输入
8. Input of augmented matrix
9.矩阵与矩阵的乘法运算
9. Matrix and matrix multiplication operation
10.矩阵与常数的运算
10. Matrices and constant operations
11.矩阵变换:对角线不变,两边元素交换
11. Matrix transformation: the diagonal is unchanged, and the elements on both sides are exchanged
12.一些特殊矩阵
12. Some special matrices
eye矩阵:对角线为1,其余元素为0的矩阵
零矩阵:元素全部为0的矩阵
对角线矩阵:除了对角线,其余元素为0