Write a Function in Ti 89 titanium

  • Context: Calculators 
  • Thread starter Thread starter Saladsamurai
  • Start date Start date
  • Tags Tags
    Function Titanium
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 29K views
Saladsamurai
Messages
3,009
Reaction score
7
Hello,

I wish to write a function that takes in 3 arguments and outputs 1. I want it to be a saved function so that I can call it at will like cos() or ln()

How do i go about doing this? I am unsure of the syntax.

Let's say it is really simple like:

f(x,y,z)=x+y+z

So from the home screen I would like to type f(1,2,3) and have it return 6

Any thoughts?

EDIT: okay so maybe that is easier than I thought. The problem I am running into is that you cannot use the "store" key when writing a function.

For example if I wanted to write the above like this:

f(x,y,z)
Func
(x+y)->A
Return A+z
EndFunc

I cannot. I have to write:

f(x,y,z)
Func
Return x+y+z
EndFuncAlso, is there a "shift key" that will make my variables Capital if I need E instead of e ?
 
Last edited:
Physics news on Phys.org
MATLABdude said:
From a Google search for ti-89 function:
http://www.batesville.k12.in.us/physics/CalcNet/Calculator/ti_89/user-defined_functions.htm

You can probably do this as long as the function is not overly complicated

Yeah. That is a "user-defined" as in, you need to redefine it every time you need it.

I edited my OP. What I posted shows how to do it from program editor-->functions

Unfortunately, if it is a complicated expression, it is a bi##h to write as you cannot break it down into simpler components using the store button.