The message below is being cross-posted from the LogoForum. Please
reply here at comp.lang.logo and it will be cross-posted back to the
LogoForum. The original author of this message is
Andreas.Micheler@[EMAIL PROTECTED]
In LogoForum@[EMAIL PROTECTED]
"jbhnj1975" <jbhnj1975@[EMAIL PROTECTED]
> wrote:
> I would like to start with something simple like an xy plane graphing a
> parabola as y=(+/-)x^2
>
> Can I create a program (in Elica/Logo) that can solve and graph
> equations?
In aUCBLogo you might start hacking into the console
something like this for graphing parabolas:
xmax=4
N=100
x=rseq -xmax xmax N
y=(x-1)^2*0.5-5
xt=x*400/xmax
yt=y*50
cs windowmode setpc "blue
pu setxy xt.1 yt.1 pd
setxy xt yt
Cheers,
Andreas