How to plot a logarithmic diagram



On Thu, 2004-07-08 at 09:07, Christiansson, G.A.V. wrote:
> Dear Group,
> 
> I cannot manage to plot a function in a logarithmic diagram.
> When I try commands like these it does not work:
> 
> (C111) Plot2d( abs(1/(1+x*%I)), [x,0,10], LOG );
> 
> LOG is not a plot option.  Must be [symbol,..data]
>  -- an error.  Quitting.  To debug this try DEBUGMODE(TRUE);)

The next version of Maxima will use gnuplot for plotting. The first beta
release is available now from <http://maxima.sf.net>;. In the new version
you will get the output you want from

plot2d(abs(1/(1+x*%i)),[x,0,10],[gnuplot_preamble,"set logscale y"]);

It isn't the prettiest interface, but it does work.

--Jim