Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Logo > [LogoForum] Re:...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 1 of 2 Topic 1512 of 1596
Post > Topic >>

[LogoForum] Re: Graphing Utility

by "John St. Clair" <john.stclair@[EMAIL PROTECTED] > Jan 8, 2008 at 04:41 AM

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
 




 2 Posts in Topic:
[LogoForum] Re: Graphing Utility
"John St. Clair"  2008-01-08 04:41:45 
Re: [LogoForum] Re: Graphing Utility
"John St. Clair"  2008-01-17 05:12:40 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Fri Jul 25 23:35:17 CDT 2008.