⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 新建 文本文档.txt

📁 ldpc编码
💻 TXT
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -