I am trying to make a program that takes 2 given points and calculates the straight line in between them using either point-slope or slope-intercept based on the users choice. I have a few variables (C, A, E) that are the final variables in my math. I have put these variables into 2 Disp
lines:
Disp "Y-"+C+"="+E+"(X-"+A+")"
and
Disp "Y="+E+"X+"+(C-EA)
But it returns me with the error Error: Data Type
because they are in math value form when they need to be converted to a string. Unfortunately, I do not have the Color Edition version of the TI-84+ so I do not have the toString() command. Is there an alternative for converting a math value in a variable to a string?