Use the user programmable calculator to write your own programs, with inbuilt plots and tables etc. Select the number of X input variables and Z output variables on the setup page. For example if you have one equation with two input variables select two X input variables, and one Z output variable.
The calculators use Javascript so you can use the full range of programming constructs: if, else, for, while. You can also define functions and objects to use in your code. Enter Javascript statements to define all of the output variables z1, z2, z3... in terms of the input variables x1, x2, x3.... and any previously defined variables. Each Javascript statement should be on a new line and must end with a semi colon ';' eg : z1 = x1 + 2 * x2;. You can also reference the variables by index eg: for(i=0: i<3; i++){x[i] = sin(z[i]);}. Refer to the help page in Resources for more details.
Related Modules :