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.
Also see Creating a CALC 1 Function Calculator.
To create a new Function Calculator from an existing JavaScript function definition.
From MDN:
A 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.)
You will want to add the hints and optionally the key labels for the parameters.
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.