矩阵的索引
假设矩阵为
首先在matlab中输入矩阵
(一)第一种索引的方法(小括号里没有逗号)
(1)A(1)=1; A(2)=5;A(3)=31;A(4)=21
(2)
(3)
第二种索引方法
(1)表示A的第3行第2列
(2)前面的[1 3]表示行,后面的表示列
(二)Colon Operator
(1)如何创建一个长的向量
语法规则:
(三)Array Concatenation(串联)
(四)Array Manipulation
(五)一些特殊的矩阵
(六)Tips for Script Writing
(1)At the beginning of your script, command:
(2)Use semicolon (;) at the end of commands to inhibit unwanted output;
Use ellipsis (…) to make scripts more readable:
(3)Press Ctrl+C to terminate the script before conalusion
(七)Function Default Variables
(八)函数句柄(Function Handle)
用来创建匿名函数,它是matlab的一种数据类型,使得函数调用像变量调用一样方便灵活;提高函数的调用速度,特别是在反复调用下效率更加显著。使得函数也可以成为输入变量,很方便调用。
f=@(x) exp(-2.*x);
文章评论(0条评论)
登录后参与讨论