MATLAB end关键字

MATLAB中的end关键字有两个主要用途:

  1. 它终止一个代码块。
  2. 它指示最后一个数组索引。
MATLAB结束语法:
end

示例:使用end关键字终止代码块:
a = ones(4)for k = 1:length(a)if a(k) == 1a(k) = 0; endenddisp('......')disp(a)disp('...end')

输出
a = 4×41111111111111111......0111011101110111...end

【MATLAB end关键字】示例:使用end关键字指示最后一个数组索引:
a = randi(100, 4, 4)b = a(end, 2:end) % here first end argument indicates the last row, %and the secondindicates the columns number from 2 to the lasta = 4×4436668669247618808575719694404b = 1×394404

    推荐阅读