MATLAB中的end关键字有两个主要用途:
- 它终止一个代码块。
- 它指示最后一个数组索引。
MATLAB结束语法:
end
示例:使用end关键字终止代码块:
a = ones(4)
for k = 1:length(a)
if a(k) == 1
a(k) = 0;
end
end
disp('......')
disp(a)
disp('...end')
输出
a = 4×4
1 1 1 1
1 1 1 1
1 1 1 1
1 1 1 1
......
0 1 1 1
0 1 1 1
0 1 1 1
0 1 1 1
...end
示例:使用end关键字指示最后一个数组索引:
a = randi(100, 4, 4)
b = a(end, 2:end) % here first end argument indicates the last row, %and the second indicates the columns number from 2 to the last
a = 4×4
43 66 68 66
92 4 76 18
80 85 75 71
96 94 40 4
b = 1×3
94 40 4
评论前必须登录!
注册