Programming on a TI Nspire

Thread Starter

krisstoops

Joined Apr 4, 2012
3
Hi everyone,

i am looking for help on programming in TI Nspire software for a validation project. Since 'TI cares' doesn't really give any practical programming support, I came here hoping for help/answers.

Basically, I need to learn more about little things to pay attention to, to make my programs work properly.

Below i have put a program written to calculate a standard deviation value based on two input values, but there seems to be a glitch in there somewhere, and i don't recognize it.

Rich (BB code):
Define LibPub stddevcontrol()=
Prgm
:Define Local odc1, odc2
:Request "OD 1 control?", odc1
:Request "OD 2 control?", odc2
:Define Local stdctrl=stDevPop(odc1,odc2)
:Disp "Standard Deviation of first control=",stdctrl
:EndPrgm
Does anyone have an idea about the flaw in here?

Thanks everyone!
 
Last edited by a moderator:

Thread Starter

krisstoops

Joined Apr 4, 2012
3
The program obviously misses a variable to store the result. I adjusted this, and ran the program.

Then i get the error message 'Function is not defined'.

Why is this?
 

Wendy

Joined Mar 24, 2008
23,415
I am posting this to eliminate the traces of a spammer. I'll erase it when someone else puts something up.
 
Top