TIB: Re: RE: Re: x=b
[Prev][Next][Index][Thread]
TIB: Re: RE: Re: x=b
Don't snap at me, you may not get any response in the future. I offered a
plausible solution. Don't get pissed 'cause it wasn't the answer you
wanted.
One other possible solution is that you may need to write a program. Use a
variable to increment through all possible solutions (a For..EndFor loop)
and PtOn the solution. Then use a second subroutine to input cursor
movement and display the X,Y coords using PxlText:
DelVar yy
yy^2+4yy+4 -> xx (or substitute any other expression)
For yy,yymin,yymax,yystep
PtOn yy,xx
EndFor
(yymin+yymax)/2 -> yy
Lbl Looper
0 -> k
While k=0
getKey() -> k
EndWhile
If k=338:yy+yystep -> yy
If k=344:yy-yystep -> yy
If k=264:Return
Goto Looper
I didn't test this program at all, hopefully it will help you out, although
it doesn't actually display a cursor to show you where you're looking, but I
think with a little tweaking, you could fine-tune this to do what you need.
-----Original Message-----
From: Matthew <mobets@flash.net>
To: ti-basic@lists.ticalc.org <ti-basic@lists.ticalc.org>
Date: Monday, December 14, 1998 11:58 AM
Subject: TIB: RE: Re: x=b
>
>Um that's nice, but the question was can you _tace_ it?. You cannot trace
a
>function that was only drawn.
>
>> -----Original Message-----
>> From: owner-ti-basic@lists.ticalc.org
>> [mailto:owner-ti-basic@lists.ticalc.org]On Behalf Of House
>> Sent: Monday, December 14, 1998 8:35 AM
>> To: ti-basic@lists.ticalc.org
>> Subject: TIB: Re: x=b
>>
>>
>>
>>
>> Use the DrawInv command. It will transpose the X and Y axes. (p. 392 of
>> the Guidebook)
>> (Yes, axes is the plural form of axis)
>>
>>
>> -----Original Message-----
>> From: babgond <babgond@france-mail.com>
>> To: ti-basic@lists.ticalc.org <ti-basic@lists.ticalc.org>
>> Date: Sunday, December 13, 1998 11:18 PM
>> Subject: TIB: x=b
>>
>>
>> >
>> >Hello everyone,
>> >I would like to know if on the TI-92 one can trace equations of the form
>> x=b
>> >
>> >
>> > Thank you @ +
>> >
>> >Babgond
>> >
>> ><http://www.multimania.com/babgond/>
>> >
>>
>>
>>
>
>