tag 标签: 矩阵索引

相关博文
  • 热度 20
    2018-1-9 22:23
    1904 次阅读|
    0 个评论
    矩阵的索引 假设矩阵为 首先在matlab中输入矩阵 (一) 第一种索引的方法(小括号里没有逗号) (1)A(1)=1; A(2)=5;A(3)=31;A(4)=21 (2) (3) 第二种索引方法 (1)表示A的第3行第2列 (2)前面的 表示行,后面的表示列 (二)Colon Operator (1)如何创建一个长的向量 语法规则: (三)Array Concatenation(串联) (四)Array Manipulation (五)一些特殊的矩阵 (六) Tips for Script Writing ( 1 ) At the beginning of your script, command: clear all (清除原来的变量) close all (关闭所有图) ( 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 inputname —— variable name of function input mfilename —— file name of currently running function nargin ——函数输入参数个数 nargout ——函数输出参数个数 varargin —— Variable length input argument list varargout —— Variable length output argument list ( 八 ) 函数句柄( Function Handle ) 用来创建匿名函数,它是 matlab 的一种数据类型,使得函数调用像变量调用一样方便灵活;提高函数的调用速度,特别是在反复调用下效率更加显著。使得函数也可以成为输入变量,很方便调用。 f=@(x) exp(-2.*x); x=0:0.1:2; plot(x,f(x)); ​ ​