awinterstale33 wrote:Enter in a variable for a value instead of a number.
Possible, yes, however we had taken extra steps (deleting all variables when solving) not to allow it "trivially". Because it's using
solve()
to do the calculations, user variables may interfere and it would be bad to have some value already there as a value for the solved variable, for instance... But if you know what you are doing and you are sure it won't interfere with the solving, you can simply declare your variable (with a prefix, maybe ? Like "my_theta" instead of "theta" if you wanted that) and use Lock my_theta
. That way, FormulaPro won't delete it before solving and you will be able to use it as a variable/value.awinterstale33 wrote:Enter a global function for a value
That works the same way. Declare it and Lock it.
I've tested that successfully as well
Note that when you press enter it will evaluate the expression/function so you'll see the result directly, it won't keep the original input.
awinterstale33 wrote:Copy the formulas and paste them into another problem/page.
If not, could the lua script be edited somehow to allow this?
I'm not sure why this wasn't a feature already, but you can simply put this at the end of the
on.resize()
function and you'll be able to copy/paste stuff from the Formulas popup window:- Code: Select all
toolpalette.enableCopy(true)
toolpalette.enablePaste(true)
awinterstale33 wrote:Also, the website to build a database (http://education.bwns.be/FormulaPro/) is not working anymore.
Oh, hmm, Jim was maintaining that, so I've asked him to see if he can restore it, and if I can, I may as well host it on TI-Planet somewhere.
The HTML+JS code is archived anyway, but there's a bit of PHP code for the tns generation that needs to be restored. He should reply soon.