TI-BASIC Wiki
Advertisement
(84) :Equ▶String(Y-VAR, String)

Puts equation Y-Var into a string.

Location[]

In the catalog

Examples[]

:"6X-3"→Y1
:Equ▶String(Y1,Str1)

This progam will set Str1 to 6X-3

Converting a Variable to a String[]

This can be used to make a variable into a string.

Ex:

:{0,1 → L1​
:{0,A → L2
:LinReg(ax+b) Y1
:Equ▶String(Y1,Str11
:Sub(Str1,1,length(Str1)-3

See Also[]

  • String▶Equ(, for converting strings to equations.
  • string( A similar command for later calculators.
Advertisement