Re: Help!!
[Prev][Next][Index][Thread]
AC <ac001@ix.netcom.com> wrote in article
<5225ee$t0i@sjx-ixn6.ix.netcom.com>...
> I'm trying to make a very BASIC program. I want my 85 to plugin an x
> value into f(x). I made a program which works, but you have to edit the
> program to put what you want for f(x). But I want it so that it prompts
> you for the equation, then the x value, then computes the f(x).
> Thanks!!
Try this out . . .
:InpSt "Enter F(x) ",FX
:Input "Enter x ",x
:St>Eq(FX,y)
:Disp y
This will store your symbolic function as a string, and then convert that
string to a symbolic equation.
References: