π
<-
Chat plein-écran
[^]

Release of FormulaPro v1

Programme équivalent à EEPro des TI-89, mais sur TI-Nspire, en Lua.

Re: Release of FormulaPro v1

Unread postby Adriweb » 11 Nov 2015, 23:11

Hi,

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)
I'll update the GitHub repo and .tns soon. Edit: done (commit, download)

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.

MyCalcs: Help the community's calculator documentations by filling out your calculators info!
MyCalcs: Aidez la communauté à documenter les calculatrices en donnant des infos sur vos calculatrices !
Inspired-Lua.org: All about TI-Nspire Lua programming (tutorials, wiki/docs...)
My calculator programs
Mes programmes pour calculatrices
User avatar
AdriwebAdmin
Niveau 16: CC2 (Commandeur des Calculatrices)
Niveau 16: CC2 (Commandeur des Calculatrices)
Level up: 78.4%
 
Posts: 14670
Images: 1118
Joined: 01 Jun 2007, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Twitter: adriweb
GitHub: adriweb

Re: Release of FormulaPro v1

Unread postby awinterstale33 » 12 Nov 2015, 08:06

Thanks for the quick response! I will give it a shot tonight.
User avatar
awinterstale33
Niveau 0: MI (Membre Inactif)
Niveau 0: MI (Membre Inactif)
Level up: 0%
 
Posts: 6
Joined: 11 Nov 2015, 21:33
Gender: Not specified
Calculator(s):
MyCalcs profile

Re: Release of FormulaPro v1

Unread postby awinterstale33 » 20 Nov 2015, 18:48

Any luck wit Jim? Or is there another way to generate a database besides the website?
User avatar
awinterstale33
Niveau 0: MI (Membre Inactif)
Niveau 0: MI (Membre Inactif)
Level up: 0%
 
Posts: 6
Joined: 11 Nov 2015, 21:33
Gender: Not specified
Calculator(s):
MyCalcs profile

Re: Release of FormulaPro v1

Unread postby Adriweb » 20 Nov 2015, 21:49

Ah, yeah sorry, he gave me the files so I should be able to host that here somewhere while he's restoring things on his server :)
I'll update the topic once it's done (probably later today).

You can generate your DB "manually" by editing the Lua file, but it's going to take longer.

MyCalcs: Help the community's calculator documentations by filling out your calculators info!
MyCalcs: Aidez la communauté à documenter les calculatrices en donnant des infos sur vos calculatrices !
Inspired-Lua.org: All about TI-Nspire Lua programming (tutorials, wiki/docs...)
My calculator programs
Mes programmes pour calculatrices
User avatar
AdriwebAdmin
Niveau 16: CC2 (Commandeur des Calculatrices)
Niveau 16: CC2 (Commandeur des Calculatrices)
Level up: 78.4%
 
Posts: 14670
Images: 1118
Joined: 01 Jun 2007, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Twitter: adriweb
GitHub: adriweb

Re: Release of FormulaPro v1

Unread postby Adriweb » 20 Nov 2015, 22:38


MyCalcs: Help the community's calculator documentations by filling out your calculators info!
MyCalcs: Aidez la communauté à documenter les calculatrices en donnant des infos sur vos calculatrices !
Inspired-Lua.org: All about TI-Nspire Lua programming (tutorials, wiki/docs...)
My calculator programs
Mes programmes pour calculatrices
User avatar
AdriwebAdmin
Niveau 16: CC2 (Commandeur des Calculatrices)
Niveau 16: CC2 (Commandeur des Calculatrices)
Level up: 78.4%
 
Posts: 14670
Images: 1118
Joined: 01 Jun 2007, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Twitter: adriweb
GitHub: adriweb

Re: Release of FormulaPro v1

Unread postby rafaelmarinho » 21 Nov 2015, 06:52



Hi :)
This generator is working properly? I can't add new formulas. :'(
User avatar
rafaelmarinho
Niveau 1: MD (Membre Débutant)
Niveau 1: MD (Membre Débutant)
Level up: 80%
 
Posts: 2
Joined: 21 Nov 2015, 06:41
Gender: Not specified
Calculator(s):
MyCalcs profile

Re: Release of FormulaPro v1

Unread postby Adriweb » 21 Nov 2015, 07:09

Oops, fixed :)

MyCalcs: Help the community's calculator documentations by filling out your calculators info!
MyCalcs: Aidez la communauté à documenter les calculatrices en donnant des infos sur vos calculatrices !
Inspired-Lua.org: All about TI-Nspire Lua programming (tutorials, wiki/docs...)
My calculator programs
Mes programmes pour calculatrices
User avatar
AdriwebAdmin
Niveau 16: CC2 (Commandeur des Calculatrices)
Niveau 16: CC2 (Commandeur des Calculatrices)
Level up: 78.4%
 
Posts: 14670
Images: 1118
Joined: 01 Jun 2007, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Twitter: adriweb
GitHub: adriweb

Re: Release of FormulaPro v1

Unread postby rafaelmarinho » 21 Nov 2015, 07:26

Thank you, a lot. This is a Great work. Thank you again! :D
User avatar
rafaelmarinho
Niveau 1: MD (Membre Débutant)
Niveau 1: MD (Membre Débutant)
Level up: 80%
 
Posts: 2
Joined: 21 Nov 2015, 06:41
Gender: Not specified
Calculator(s):
MyCalcs profile

Re: Release of FormulaPro v1

Unread postby awinterstale33 » 31 Jan 2016, 04:32



I forgot to say thank you!! Sorry, I got caught up with school and couldn't work on my calculating much. But thanks again!

Also, I was wondering how the progress with EEPro/Formula Pro was going in general. Or more importantly, if there is still any hope of MEPro for us Mechanical Engineers!? I wish I could take ME Pro apart and try to adapt it for the Nspire, but I can't make sense of it opened in notepad.
User avatar
awinterstale33
Niveau 0: MI (Membre Inactif)
Niveau 0: MI (Membre Inactif)
Level up: 0%
 
Posts: 6
Joined: 11 Nov 2015, 21:33
Gender: Not specified
Calculator(s):
MyCalcs profile

Re: Release of FormulaPro v1

Unread postby Adriweb » 31 Jan 2016, 04:52

Right now, the focus is on making/improving OpenSpire (≈ online GUI builder) and ETK (GUI Framework), which would then be used to create updates to FormulaPro (and possibly make an MEPro, but there is no planned ETA).
An initial version of OpenSpire should be available at the end of February...

But anyway, if a bug is found in the current FormulaPro (or a small feature request), though, we're listening and can hopefully quickly look at it.
A recent happening of that was a few months ago to add copy/paste support, as you know :)

MyCalcs: Help the community's calculator documentations by filling out your calculators info!
MyCalcs: Aidez la communauté à documenter les calculatrices en donnant des infos sur vos calculatrices !
Inspired-Lua.org: All about TI-Nspire Lua programming (tutorials, wiki/docs...)
My calculator programs
Mes programmes pour calculatrices
User avatar
AdriwebAdmin
Niveau 16: CC2 (Commandeur des Calculatrices)
Niveau 16: CC2 (Commandeur des Calculatrices)
Level up: 78.4%
 
Posts: 14670
Images: 1118
Joined: 01 Jun 2007, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Twitter: adriweb
GitHub: adriweb

PreviousNext

Return to FormulaPro Nspire (EEPro)

Who is online

Users browsing this forum: No registered users and 0 guests

-
Search
-
Social TI-Planet
-
Featured topics
"1 calculatrice pour tous", le programme solidaire de Texas Instruments. Reçois gratuitement et sans aucune obligation d'achat, 5 calculatrices couleur programmables en Python à donner aux élèves les plus nécessiteux de ton lycée. Tu peux recevoir au choix 5 TI-82 Advanced Edition Python ou bien 5 TI-83 Premium CE Edition Python.
Enseignant(e), reçois gratuitement 1 exemplaire de test de la TI-82 Advanced Edition Python. À demander d'ici le 31 décembre 2024.
Offre de test des nouveautés de rentrée 2024 par Casio. Enseignant(e), reçois gratuitement 1 exemplaire, à ton choix, de la Graph Light ou bien de la Graph Math+
14€ remboursés par Casio sur l'achat de ta calculatrice Graph 35 d'ici le 31 Octobre 2024
10€ remboursés par Casio sur l'achat de ta calculatrice Graph 90+E d'ici le 31 Décembre 2024
10€ remboursés par Casio sur l'achat de ta calculatrice Graph 25 d'ici le 31 Décembre 2024
8€ remboursés par Casio sur l'achat de ta calculatrice Graph Math+ d'ici le 31 Octobre 2024
Reprise de ton ancienne fx-92 Collège ou Graph 25/35/90 à 3€ peu importe son état. Même non fonctionnelle et donc invendable, même ancienne Graph 35 non conforme aux programmes (pas de Python), même ancienne Graph 25/35 inutilisable aux examens (pas de mode examen) et donc invendable. Etiquette de retour fournie, pas de frais de port à payer.
3€ remboursés par Casio sur l'achat de ta calculatrice fx-92 Collège d'ici le 30 Septembre 2024
5€ de remise immédiate sur l'achat de ta calculatrice TI-83 Premium CE Edition Python chez les revendeurs partenaires
4€ de remise immédiate sur l'achat de ta calculatrice TI-82 Advanced Edition Python chez les revendeurs partenaires
3€ de remise immédiate sur l'achat de ta calculatrice TI-82 Advanced chez les revendeurs partenaires
Comparaisons des meilleurs prix pour acheter sa calculatrice !
Aidez la communauté à documenter les révisions matérielles en listant vos calculatrices graphiques !
1234567891011121314
-
Donations / Premium
For more contests, prizes, reviews, helping us pay the server and domains...
Donate
Discover the the advantages of a donor account !
JoinRejoignez the donors and/or premium!les donateurs et/ou premium !


Partner and ad
Notre partenaire Jarrety Calculatrices à acheter chez Calcuso
-
Stats.
1139 utilisateurs:
>1112 invités
>22 membres
>5 robots
Record simultané (sur 6 mois):
6892 utilisateurs (le 07/06/2017)
-
Other interesting websites
Texas Instruments Education
Global | France
 (English / Français)
Banque de programmes TI
ticalc.org
 (English)
La communauté TI-82
tout82.free.fr
 (Français)