Difference between revisions of "ZCubes/Writing Functions in ZCubes"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "==Writing Functions in ZCubes== <br/> You can write functions in ZCubes to do any computation. You can define your own functions in easy and natural way. The differentiating c...")
 
 
(One intermediate revision by one other user not shown)
Line 9: Line 9:
  
  
 +
==Code==
 +
d:=s*t;
 +
d(3,6)
  
<<[[Learn_ZCubes | Learn ZCubes ]]
+
v:=u+a*t;
 +
v(4,6,7)
 +
 
 +
 
 +
 
 +
<br/>
 +
*[[Z3 | Z3 home]]
 +
*[[Z^3 Language Documentation]]
 +
*[[ZCubes_Videos | ZCubes Videos and Tutorials]]
 +
*[[Main_Page | About ZCubes ]]
 +
<br/>
 
<br/>
 
<br/>
&copy; Copyright 1996-2020, ZCubes, Inc.
+
&copy; Copyright 1996-2021, ZCubes, Inc.

Latest revision as of 01:27, 11 March 2021

Writing Functions in ZCubes


You can write functions in ZCubes to do any computation. You can define your own functions in easy and natural way. The differentiating capability of ZCubes is that your function can read almost like real life equations, if you are trying to program an equation in Physics, Statistics etc.

Video


Writing Functions in ZCubes















Code

d:=s*t;
d(3,6)
v:=u+a*t;
v(4,6,7)





© Copyright 1996-2021, ZCubes, Inc.