MATLAB中的end关键字有两个主要用途:
- 它终止一个代码块。
- 它指示最后一个数组索引。
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
推荐阅读
- 适用于MATLAB中基本操作的兼容数组大小
- MATLAB错误控制语句try-catch
- MATLAB return语句
- MATLAB break语句
- MATLAB continue语句
- 快速安装MATLAB详细步骤
- MATLAB while循环语句
- MATLAB嵌套循环语句
- MATLAB for循环语句