Difference between revisions of "Z^3 Language Documentation"

From ZCubes Wiki
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===
 
+
<code>
UNIQ80b3ba7da5c2ba0a-pre-00000002-QINU
+
√(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)
 +
</code>

Revision as of 13:48, 23 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

√(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)