Chinese terminology

From APL Wiki
Revision as of 00:17, 16 November 2021 by XuanWu (talk | contribs) (Chinese terminology for ⍳⍴↓, one for monadic and another for dyadic)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
APL Chinese Sample Code in APL Sample Code in Chinese
⍳ 单参数 数列 ⍳6 数列6
⍳ 双参数 位置 'abcd' ⍳ 'ac' 'abcd' 位置 'ac'
⍴ 单 形状 ⍴⍳6 形状 数列6
⍴ 双 重塑 3 2 ⍴ ⍳6 3 2 重塑 数列6
↓ 单 拆分 ↓3 2⍴⍳6 拆分 3 2 塑形 数列6
↓ 双 去头 2↓⍳6 2 去头 数列6