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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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: