Lisp Practice
Today I decided I would have a little fun with Lisp. I wanted to try and make a program that you can type in a function and get a graph of it.
I started off with a function that takes an -value and a list of coefficients, and evaluates the polynomial defined by those coefficients. Here’s the function:
And here’s using it to evaluate the polynomial at :
Then I thought how to turn each of those points into an ASCII-art graph.
The polt function uses two nested dolist
loops iterating over a list of x-values and y-values, and then at each point, it has to decide domehow whether to plot a point (by returning “#” insread of the background character). The simplest solution is to only plot it if and don’t otherwise, but this only works when lines cross exactly over the gridline.
After considering a number of other methods, I decided on the method that mattbatwings used in his Minecraft graphing calculator. This represents a function as 3D surface in and , and then plotting all the points where the surface crosses the - plane at .
This function makes that decision. It takes the function , the and coordinates, and which represents the distance between gird lines.
If there is a sign change in the function close to the point, it returns t
, otherwise it returns nil
.
Now all that’s left to do is iterate over the provided ranges and call zerocross
at each x- and y-value, and if there is no zero crossing, return the “background” characters.
axis
returns a line character if it is on the axis, and dots for a grid at increments of 2.
range
is an emulation fo the Python range
function, which returns a list of numbers from min
up to max
in increments of step
.
plot
then iterates over the entire x-y plane within the given range, and plots the function:
If you’re interested in the whole code, here it is: plot.lisp
Here’s using it to plot the function :
This produces this neat graph:
Pretty neat! An easy self-introduction to a programming language I though I’d never learn. Maybe I’ll take some time to learn more.
And here’s a bigger example: :
Related Posts
- Pointer Soup
- Manual Memory Management Madness
- One Hell of a Physics Engine
- So far ahead, yet so far behind
- Boy, Have I Been...