Difference between revisions of "Z^3 Language Documentation"
Jump to navigation
Jump to search
Line 10: | Line 10: | ||
===⧓,⧒,⧒ and ⋈: Between Operators=== | ===⧓,⧒,⧒ and ⋈: Between Operators=== | ||
+ | <pre> | ||
+ | a=-1; | ||
+ | ⧓(1,a,30) | ||
+ | a=29; | ||
+ | ⧓(1,a,30) //between g | ||
+ | |||
+ | a=31; | ||
+ | ⧒(1,a,30) //xlbetween g | ||
+ | a=30; | ||
+ | ⧒(1,a,30) //xlbetween g | ||
+ | |||
+ | ⧒(1,2,30) // xlb g | ||
+ | ⧒(1,1,30) | ||
+ | |||
+ | a=29; | ||
+ | ⋈(1,-1..31,30); | ||
+ | |||
+ | ⧓(1,-1..5,4); | ||
+ | |||
+ | [ | ||
+ | ⧓(1,1,30), | ||
+ | ⧓(1,0,30), | ||
+ | ⧓(1,10,30), | ||
+ | ⧓(1,31,30), | ||
+ | ⧑(1,29,30), | ||
+ | ⧑(1,30,30), | ||
+ | ⧑(1,1,30), | ||
+ | ⧑(1,30,30), | ||
+ | ⋈(1,1,30), | ||
+ | ⋈(1,3,30) | ||
+ | ] | ||
+ | |||
+ | </pre> | ||
===√: Square Root, Cube Root, Fourth Root and Nth Root Operators=== | ===√: Square Root, Cube Root, Fourth Root and Nth Root Operators=== |
Revision as of 12:50, 23 June 2016
Operators
@: Function Apply Operator
~: Transpose Operator
↑ and ↓: Ascending and Descending Operator
⧓,⧒,⧒ and ⋈: Between Operators
a=-1; ⧓(1,a,30) a=29; ⧓(1,a,30) //between g a=31; ⧒(1,a,30) //xlbetween g a=30; ⧒(1,a,30) //xlbetween g ⧒(1,2,30) // xlb g ⧒(1,1,30) a=29; ⋈(1,-1..31,30); ⧓(1,-1..5,4); [ ⧓(1,1,30), ⧓(1,0,30), ⧓(1,10,30), ⧓(1,31,30), ⧑(1,29,30), ⧑(1,30,30), ⧑(1,1,30), ⧑(1,30,30), ⋈(1,1,30), ⋈(1,3,30) ]
√: Square Root, Cube Root, Fourth Root and Nth Root Operators
√(3+34) ∛(27.01) √√64 ROOTNTH(1..10,4) // root is first parameter NTHROOT(1..10,4) // root is second parameter NTHROOT(1..100,2) NTHROOT(1..100,4) ROOTNTH(1..100,2) ROOTNTH(1..100,4) 3√81