标签:1.2 类型 技术 分享 cer a long var ted func
注意:关键字是可以做变量的
row vector:
>> a = [1 2 3 4]
column vector:
>> b= [1; 2; 3; 4]
Select a certain subset of elements inside a matrix
•What’s the answer from MATLAB after typing?
>> A(8)
9
>> A([1 3 5])
1 31 17
>> A([1 3; 1 3])
>> A(3,2)
2
>> A([1 3], [1 3])
•Want to create a long array:A= [12 3 … 100]
•Creates vectors or arrays, and specify for iterations
•Syntax:
•What’s the answer from MATLAB after typing?
>> B = 1:5
1 2 3 4 5
>> B = 1:2:5
1 3 5
>> B = [1:5; 2:3:15; -2:0.5:0]
1 2 3 4 5
2 5 8 11 13
-2 -1.5 -1 -0.5 0
>>str= ‘a‘:2:‘z‘
a b c ... z
数组运算
>> x1=A+a
每个都加2
>> y1=A+B
对应位想加
>> x2=A/a
每位都除以a
>> y2=A*B
>> x3=A./a
对应位相乘a
>> y3=A.*B
对应位相乘
>> x4=A^a
a个A相乘
>> y5=A./B
对应位想除
>>C=A‘
转置矩阵
Some Special Matrix
一些特殊的矩阵
一些矩阵函数
>>max(A)
>>max(max((A))
结果是 9
也就是对上面的[9 8 7 ] 中取最大的
>>sort(A)
从小到大 按照列排序
>>sortrows(A)
从小到大 按照行排序
>> min(A)
参照最大
>> size(A)
结果是 3 3 表示有3行3列
>> sum(A)
对每列求和
标签:1.2 类型 技术 分享 cer a long var ted func
原文地址:https://www.cnblogs.com/liu-wang/p/9027016.html