Chinese terminology: Difference between revisions
(Add translations for ←+/× ∘. ∊~) |
|||
Line 22: | Line 22: | ||
|- | |- | ||
| | | [[Assignment]] || Monadic <source lang=apl inline>←</source> 单 || 置为 || <source lang=apl inline>R←⍳6</source> || R 置为 数列6 | ||
|- | |- | ||
| | | [[Conjugate]] || Monadic <source lang=apl inline>+</source> 单 || 共轭 || <source lang=apl inline>+ 1.2 0j4 ¯5j¯6</source> || 共轭 1.2 0j4 ¯5j¯6 | ||
|- | |- | ||
| | | [[Plus]] || Dyadic <source lang=apl inline>+</source> 双 || 相加 || <source lang=apl inline>1 2 3 + 10</source> || 1 2 3 相加 10 | ||
|- | |- | ||
| | | [[Windowed Reduce]] || Monadic <source lang=apl inline>f/</source> 单 || 归约 || <source lang=apl inline>2 +/ 1 2 3</source> || 2 相加 归约 1 2 3 | ||
|- | |- | ||
| | | [[Replicate]] || Dyadic <source lang=apl inline>/</source> 双 || 复刻 || <source lang=apl inline>1 0 1 / '你好啊'</source> || 1 0 1 复刻 '你好啊' | ||
|- | |- | ||
| | | [[Signum]] || Monadic <source lang=apl inline>×</source> 单 || 朝向 || <source lang=apl inline>×3 0 ¯5</source> || 朝向 3 0 ¯5 | ||
|- | |- | ||
| | | [[Multiply]] || Dyadic <source lang=apl inline>×</source> 双 || 相乘 || <source lang=apl inline>2 ¯3 4.5 × ¯3 ¯4 2</source> || 2 ¯3 4.5 相乘 ¯3 ¯4 2 | ||
|- | |- | ||
| | | [[Outer product]] || Dyadic <source lang=apl inline>∘.</source> 双 || 两两 || <source lang=apl inline>R∘.×R</source> || R 两两 相乘 R | ||
|- | |- | ||
| || Monadic <source lang=apl inline>∊</source> 单 || 列出 || <source lang=apl inline> | | [[Enlist]] || Monadic <source lang=apl inline>∊</source> 单 || 列出 || <source lang=apl inline>(1 2 1) (2 1 2)</source> || 列出 (1 2 1) (2 1 2) | ||
|- | |- | ||
| | | [[Membership]] || Dyadic <source lang=apl inline>∊</source> 双 || 属于 || <source lang=apl inline>'没啥' 4 ∊ 4 '没' '没啥啊'</source> || '没啥' 4 属于 4 '没' '没啥啊' | ||
|- | |- | ||
| | | [[Not]] || Monadic <source lang=apl inline>~</source> 单 || 取反 || <source lang=apl inline>~ 0 1 0 0</source> || 取反 0 1 0 0 | ||
|- | |- | ||
| | | [[Without]] || Dyadic <source lang=apl inline>~</source> 双 || 剔除 || <source lang=apl inline>3 1 4 1 5 ~ 5 1</source> || 3 1 4 1 5 剔除 5 1 | ||
|} | |} | ||
{{APL development}}[[Category:Lists]] | {{APL development}}[[Category:Lists]] |
Revision as of 07:14, 17 November 2021
While written APL is mostly symbolic, facilitating communication of thought across human language barriers, instructional text and verbal conveying of APL subjects requires human language translations of the glyphs and primitives etc. This article attempts to provide a standard for Chinese terminology used in such contexts, to ease the burden of translators, assist speakers, and in general lessen the risk of misunderstandings in conversation.
Translations
This list is incomplete. Please edit this page to contribute. The primary English term is the corresponding article name (which should be linked) if an article exists. Use the Discussion page to remark about translations you disagree with, or to provide suggestions for otherwise improving this page. When a translation has historical or external precedent, please add a reference to that.
In the below, 单 refers to 单参数 (monadic usage) and 双 refers to 双参数 (dyadic usage).
Primary term | Description | Translation | Sample Code | Explanation |
---|---|---|---|---|
Index Generator | Monadic ⍳ 单 |
数列 | ⍳6 |
数列6 |
Index of | Dyadic ⍳ 双 |
位置 | 'abcd' ⍳ 'ac' |
'abcd' 位置 'ac' |
Shape | Monadic ⍴ 单 |
形状 | ⍴⍳6 |
形状 数列6 |
Reshape | Dyadic ⍴ 双 |
重塑 | 3 2 ⍴ ⍳6 |
3 2 重塑 数列6 |
Split | Monadic ↓ 单 |
拆分 | ↓3 2⍴⍳6 |
拆分 3 2 重塑 数列6 |
Drop | Dyadic ↓ 双 |
去头 | 2↓⍳6 |
2 去头 数列6 |
Assignment | Monadic ← 单 |
置为 | R←⍳6 |
R 置为 数列6 |
Conjugate | Monadic + 单 |
共轭 | + 1.2 0j4 ¯5j¯6 |
共轭 1.2 0j4 ¯5j¯6 |
Plus | Dyadic + 双 |
相加 | 1 2 3 + 10 |
1 2 3 相加 10 |
Windowed Reduce | Monadic f/ 单 |
归约 | 2 +/ 1 2 3 |
2 相加 归约 1 2 3 |
Replicate | Dyadic / 双 |
复刻 | 1 0 1 / '你好啊' |
1 0 1 复刻 '你好啊' |
Signum | Monadic × 单 |
朝向 | ×3 0 ¯5 |
朝向 3 0 ¯5 |
Multiply | Dyadic × 双 |
相乘 | 2 ¯3 4.5 × ¯3 ¯4 2 |
2 ¯3 4.5 相乘 ¯3 ¯4 2 |
Outer product | Dyadic ∘. 双 |
两两 | R∘.×R |
R 两两 相乘 R |
Enlist | Monadic ∊ 单 |
列出 | (1 2 1) (2 1 2) |
列出 (1 2 1) (2 1 2) |
Membership | Dyadic ∊ 双 |
属于 | '没啥' 4 ∊ 4 '没' '没啥啊' |
'没啥' 4 属于 4 '没' '没啥啊' |
Not | Monadic ~ 单 |
取反 | ~ 0 1 0 0 |
取反 0 1 0 0 |
Without | Dyadic ~ 双 |
剔除 | 3 1 4 1 5 ~ 5 1 |
3 1 4 1 5 剔除 5 1 |
APL development [edit] | |
---|---|
Interface | Session ∙ Typing glyphs (on Linux) ∙ Fonts ∙ Text editors |
Publications | Introductions ∙ Learning resources ∙ Simple examples ∙ Advanced examples ∙ Mnemonics ∙ ISO 8485:1989 ∙ ISO/IEC 13751:2001 ∙ A Dictionary of APL ∙ Case studies ∙ Documentation suites ∙ Books ∙ Papers ∙ Videos ∙ APL Quote Quad ∙ Vector journal ∙ Terminology (Chinese, German) ∙ Neural networks ∙ Error trapping with Dyalog APL (in forms) |
Sharing code | Backwards compatibility ∙ APLcart ∙ APLTree ∙ APL-Cation ∙ Dfns workspace ∙ Tatin ∙ Cider |
Implementation | Resources ∙ Open-source ∙ Magic function ∙ Performance ∙ APL hardware |
Developers | Timeline of corporations ∙ APL2000 ∙ Dyalog ∙ IBM ∙ IPSA ∙ STSC |