45 lines
2.0 KiB
Plaintext
Raw Normal View History

2015-01-09 00:38:51 -07:00
notify("")|Display a message in a box.
ask("")|Ask a question in a box. Supply question text.
diff('',"x")|Find the derivative of the function passed with respect to the second argument.
integrate('',"x")|Find the integral of the function passed with respect to the second argument.
rad(0)|Convert a given number in degrees to radians.
deg(0)|Convert a given number in radians to degrees.
subs('',"x")|Solve an equation for the second argument.
simplify('')|Simplify the given function.
vpa('')|Computes numerical value or simplifies.
2015-01-09 00:38:51 -07:00
plot()|Show the plot window.
plot('')|Graph the given function.
plotname("")|Sets the title of the graph window.
plotname()|Gets the title of the graph window.
2015-01-15 02:42:41 -07:00
xlim(min,max)|Sets the x-axis min and max values. Cannot be used after a formula has been graphed.
2015-01-09 00:38:51 -07:00
plotclr()|Reset the graph.
drawdot(x, y)|Places a dot at the given coordinates.
readfile("")|Read a text file from the given filename.
savefile(data,"")|Save the text data to a file.
2015-03-14 21:50:08 -06:00
rand()|Random fraction from 0 (inclusive) to 1 (exclusive)
rand(min,max)|Random number between min and max, inclusive
randb()|Random boolean (true or false)
2015-04-01 22:07:01 -06:00
perms(items)|Array of all possible combinations.
2015-03-14 21:50:08 -06:00
add(n1,n2,...)|Add the given numbers.
subtract(n1,n2,...)|Subtract the given numbers.
times(n1,n2,...)|Multiply the given numbers.
divide(n1,n2,...)|Divide the given numbers.
mod(n1,n2,...)|Divide the numbers and return the remainder.
2015-04-01 22:07:01 -06:00
factorial(n)|Get the factorial (n!) of n as a string.
factor(n)|Get an array of all the factors of n.
2015-01-09 00:38:51 -07:00
abs(0)|Absolute value of number.
asin(0)|
acos(0)|
atan(0)|
ceil(0)|Round the number up to the next integer.
exp(0)|
floor(0)|Round the number down to the next integer.
log(0)|Natural log of number.
max(0,1,...)|Returns the highest number given.
min(0,1,...)|Returns the lowest number given.
pow(x,y)|Raise x to y and calculate.
random()|Gives a random number between 0.0 and 1.0.
sin(0)|Find the sine.
cos(0)|Find the cosine.
tan(0)|Find the tangent.
print("")|Prints the supplied text or formula to the output.