views:

130

answers:

1

I heard today that Maxima can do the country plot by contour_plot in Sage. I tried the following unsuccessfully to import Maxima:

from Maxima import contour_plot

I would like to make a similar map as here.

+1  A: 

You probably mean a contour plot. Get a quick start and paste this code to your Sage Notobook:

f = lambda x,y: cos(x*y)

contour_plot(f, (-100, 4), (-4, 4))

More examples:

Masi
Where can I get the x, y and z -coordinates to draw maps?
Masi