Documentation Home

CALC 1 Function Calculator List

These lists are used to select calculators.

By tapping the "Edit" button you can

By tapping the Downloads button, a list of available calculators to download will appear. The new calculator will appear at the top of the list.

When there are updates available for the CALC 1 supplied calculators, the "Downloads" button text will read "Download Updates!".

If you updated to CALC 1 from a previous version there may be new calculators to download.

Deleted CALC 1 supplied calculators can be replaced by downloading them.

If you are using the customizable version, there are the following additions to the calculator list:

To create a new Function Calculator

Also see Creating a CALC 1 Function Calculator.

  1. Tap the "Edit" button, then the add (+) button.
  2. A new Function Calculator is created. Use the Function Calculator Editor to add and edit the parameter and the body of the function.

To create a new Function Calculator from an existing JavaScript function definition.

From MDN:

function definition (also called a function declaration, or function statement) consists of the function keyword, followed by:

For example, the following code defines a simple function named square:

function square(number) {
return number * number;
}

CALC 1 Function Calculators require that the parameters and the return value be a Number. (An integer or floating point number. For example: 42 or 3.14159.)

  1. Copy the function to the clipboard.
  2. Tap the "Edit" button, then the add (+) button.
  3. A new Function Calculator is created and is ready to use.
  4. Use the Function Calculator Editor to edit the parameter and test the body of the function.

You will want to add the hints and optionally the key labels for the parameters.

Duplicating a Function Calculator

Many times it is more efficient to duplicate an existing Function Calculator to customize it to your requirements.

Left swipe on the Function Calculator you want to duplicate and select "Duplicate".

Use the Function Calculator Editor to edit the title, description, function name, parameters and body of the function.