Difference between revisions of "Z^3 Language Documentation"
Jump to navigation
Jump to search
Line 12: | Line 12: | ||
===√: Square Root, Cube Root, Fourth Root and Nth Root Operators=== | ===√: Square Root, Cube Root, Fourth Root and Nth Root Operators=== | ||
+ | |||
+ | |||
+ | 5*√3 | ||
+ | 5√3 // 5th root of 3. | ||
+ | |||
+ | 3√144 // 3rd root of n. | ||
+ | √144 | ||
+ | |||
+ | a=4; | ||
+ | b=144; | ||
+ | a√b | ||
+ | |||
+ | a=4; | ||
+ | b=144; | ||
+ | a*√b | ||
==Logical Constructs== | ==Logical Constructs== |
Revision as of 07:53, 22 June 2016
Operators
@: Function Apply Operator
~: Transpose Operator
↑ and ↓: Ascending and Descending Operator
⧓,⧒,⧒ and ⋈: Between Operators
√: Square Root, Cube Root, Fourth Root and Nth Root Operators
5*√3 5√3 // 5th root of 3.
3√144 // 3rd root of n. √144
a=4; b=144; a√b
a=4; b=144; a*√b