新建 文本文档.txt
来自「ldpc编码」· 文本 代码 · 共 14 行
TXT
14 行
END Terminate scope of FOR, WHILE, SWITCH, TRY, and IF statements.
Without END's, FOR, WHILE, SWITCH, TRY, and IF wait for further input.
Each END is paired with the closest previous unpaired FOR, WHILE,
SWITCH, TRY or IF and serves to terminate its scope.
END can also serve as the last index in an indexing expression. In
that context, END = SIZE(X,k) when used as part of the k-th index.
Examples of this use are, X(3:end) and X(1,1:2:end-1). When using END
to grow an array, as in X(end+1) = 5, make sure X exists first.
END(A,K,N) is called for indexing expressions involving the object A
when END is part of the K-th index out of N indices. For example,
the expression A(end-1,:) calls A's END method with END(A,1,2).
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?