Bill Allombert on Wed, 07 Mar 2007 16:37:31 +0100


[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]

Re: newbie question


On Wed, Mar 07, 2007 at 09:05:54AM -0600, Lonnie Cumberland wrote:
> Hello All,
> 
> I am new to Pari after using Landon Calc for a while, but had some
> problems with it and thought that I would try a more advanced package
> like Pari.
> 
> I just installed Pari on a Windows machine and tried a simple plot
> command.
> 
> plot(x=-2,2,sin(x^7))
> 
> it seems to have plotted the result in the text command space instead
> of a graphical window.

This is normal, you want to use the ploth function:
ploth(x=-2,2,sin(x^7))

Cheers,
Bill.