Update autocomplete lists

master
skylarmt 10 years ago
parent a11e6634c5
commit c5e1f7e02a

@ -1,31 +1,33 @@
notify|return nothing|Display a message in a box. notify("")|Display a message in a box.
ask|return String|Ask a question in a box. Supply question text. ask("")|Ask a question in a box. Supply question text.
diff|return String|Find the derivative of the function passed with respect to the second argument. diff('',"x")|Find the derivative of the function passed with respect to the second argument.
integrate|return String|Find the integral 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|return double|Convert a given number in degrees to radians. rad(0)|Convert a given number in degrees to radians.
deg|return double|Convert a given number in radians to degrees. deg(0)|Convert a given number in radians to degrees.
subs|return double|Solve an equation for the second argument. subs('',"x")|Solve an equation for the second argument.
plot|return nothing|Graph the given function. plot()|Show the plot window.
graph|alias of plot|Graph the given function. plot('')|Graph the given function.
plotname|return nothing or String|Gets or sets the title of the graph window. plot(x[],y[])|Graph the lists of points given.
plotclr|return nothing|Clear the graph and its history. graph('')|Alias of plot('')
clearplot|alias of plotclr|Clear the graph and its history. plotname("")|Sets the title of the graph window.
plotscale|return nothing|Scale the plot to the given factor. plotname()|Gets the title of the graph window.
drawdot|return nothing|Places a red dot at the given coordinates. plotrange(min,max)|Sets the x-axis min and max values.
abs|return double| plotclr()|Reset the graph.
asin|return double| clearplot()|Alias of plotclr()
acos|return double| drawdot(x, y)|Places a dot at the given coordinates.
atan|return double| abs(0)|Absolute value of number.
ceil|return double| asin(0)|
exp|return double| acos(0)|
floor|return double| atan(0)|
log|return double| ceil(0)|Round the number up to the next integer.
max|return double|Returns the highest number given. exp(0)|
min|return double|Returns the lowest number given. floor(0)|Round the number down to the next integer.
pow|return double| log(0)|Natural log of number.
random|return double|Gives a random number between 0.0 and 1.0. max(0,1,...)|Returns the highest number given.
round|return double| min(0,1,...)|Returns the lowest number given.
sin|return double| pow(x,y)|Raise x to y and calculate.
cos|return double| random()|Gives a random number between 0.0 and 1.0.
tan|return double| sin(0)|Find the sine.
print|return nothing|Prints the supplied text to the output. cos(0)|Find the cosine.
tan(0)|Find the tangent.
print("")|Prints the supplied text or formula to the output.

@ -1,30 +1,32 @@
_.notify|return nothing|Display a message in a box. _.notify("")|Display a message in a box.
_.ask|return String|Ask a question in a box. Supply question text. _.ask("")|Ask a question in a box. Supply question text.
_.diff|return String|Find the derivative of the function passed with respect to the second argument. _.diff('',"x")|Find the derivative of the function passed with respect to the second argument.
_.integrate|return String|Find the integral 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.
radians|return double|Convert a given number in degrees to radians. _.rad(0)|Convert a given number in degrees to radians.
degrees|return double|Convert a given number in radians to degrees. _.deg(0)|Convert a given number in radians to degrees.
_.subs|return double|Solve an equation for the second argument. _.subs('',"x")|Solve an equation for the second argument.
_.plot|return nothing|Graph the given function. _.plot()|Show the plot window.
_.graph|alias of plot|Graph the given function. _.plot('')|Graph the given function.
_.plotname|return nothing or String|Gets or sets the title of the graph window. _.plot(x[],y[])|Graph the lists of points given.
_.plotclr|return nothing|Clear the graph and its history. _.graph('')|Alias of plot('')
_.clearplot|alias of plotclr|Clear the graph and its history. _.plotname("")|Sets the title of the graph window.
_.plotscale|return nothing|Scale the plot to the given factor. _.plotname()|Gets the title of the graph window.
_.drawdot|return nothing|Places a red dot at the given coordinates. _.plotrange(min,max)|Sets the x-axis min and max values.
fabs|return double| _.plotclr()|Reset the graph.
asin|return double| _.clearplot()|Alias of plotclr()
acos|return double| _.drawdot(x, y)|Places a dot at the given coordinates.
atan|return double| fabs(0)|Absolute value of number.
ceil|return double| asin(0)|
exp|return double| acos(0)|
floor|return double| atan(0)|
log|return double| ceil(0)|Round the number up to the next integer.
max|return double|Returns the highest number given. exp(0)|
min|return double|Returns the lowest number given. floor(0)|Round the number down to the next integer.
pow|return double| log(0)|Natural log of number.
round|return double| max(0,1,...)|Returns the highest number given.
sin|return double| min(0,1,...)|Returns the lowest number given.
cos|return double| pow(x,y)|Raise x to y and calculate.
tan|return double| sin(0)|Find the sine.
print|return nothing|Prints the supplied text to the output. cos(0)|Find the cosine.
tan(0)|Find the tangent.
print("")|Prints the supplied text or formula to the output.
Loading…
Cancel
Save