Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to auto-insert "Ans" at start of an expression #12

Open
GoogleCodeExporter opened this issue Mar 23, 2015 · 1 comment
Open

Comments

@GoogleCodeExporter
Copy link

Mathdroid offers the option in the settings called continuation mode which 
"Auto-insert[s] "Ans" when an operator is used at the start of an expression."

It would be nice if arity allowed the user to toggle between starting with Ans 
since there is no dedicated negative symbol. I often forget to start an 
expression with ( and end up having to retype it.
Ex: -a+b would become Ans-a+b

Original issue reported on code.google.com by William....@gmail.com on 17 Dec 2011 at 10:26

@GoogleCodeExporter
Copy link
Author

This feature is not needed. Simply assign your calculation to a variable, then 
use the variable.

For example, try

k=5

Then do

k+3

And the answer will be 8

You can also create functions. For example, do

myfunc(a,b)=a-b

Then do

x=myfunc(5,3)

Then try

x+4

Which will leave you with 6. You can also do functional things like this: do

m=5
h=4
x=m+h

That will show you an answer of 9, and all those variables are usable in 
further calculations.

:)

Original comment by TruSktr on 26 Sep 2013 at 5:22

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant