Sponsored links: Algebra eBooks
 

Help Index

A

B

C

D

E

F

G

H

I

J

K

L

M

N

O

P

Q

R

S

T

U

V

W

X

Y

Z

The Maxima on-line user's manual

Algebra Calculator

Search:

Contour_plot Calculator

Contour_plot

Function: contour_plot (<expr>, <x_range>, <y_range>, <options>, ...) It plots the contours (curves of equal value) of <expr> over the region <x_range> by <y_range>. Any additional arguments are treated the same as in plot3d.

f(x,y):= ((x^2) - (y^2));
contour_plot(f(x,y), [x,-1,1], [y,-1,1]);

This function only works when the plot format is either gnuplot or gnuplot_pipes. The additional package implicit_plot can also be used to plot contours and it works for any format. See implicit_plot.

Examples:

          (%i1) contour_plot (x^2 + y^2, [x, -4, 4], [y, -4, 4])$

          (%i1) F(x, y) := x^3 + y^2;
                                             3    2
          (%o1)                  F(x, y) := x  + y
          (%i2) contour_plot (F, [u, -4, 4], [v, -4, 4])$

You can add any options accepted by plot3d; for instance, the option legend with a value of false, to remove the legend. Gnuplot chooses, by default, 3 contours to show. to increase the number of levels, it is necessary to specify a custom gnuplot preamble:

          (%i1) contour_plot (u^3 + v^2, [u, -4, 4], [v, -4, 4],
          (%i2) [legend,false], [gnuplot_preamble,"set cntrparam levels 12"])$

(%o1)                                true
(%i2) 

Contour_plot Example

Related Examples

contour_plot
contour_plot (x^2 + y^2, [x, -4, 4], [y, -4, 4]);

f:((x+1)^2+y^2)*(x^2+...

contour_plot (x^2 + y...

Calculate

contour_plot-exp
contour_plot (x^2+exp(y), [x,-10,10], [y,-10,10]);

contour_plot (x^2+exp...

Calculate

contour_plot-cos-diff-plot2d-sin-sublis
contour_plot (x^2 + y^2, [x, -4, 4], [y, -4, 4]);

x^6 +19*x^5 + x^4 - 1...

integrand: x^2*y*diff...

path: [x = cos(t), y ...

Calculate

contour_plot-function

-- function: contour_...

Calculate

contour_plot
contour_plot(f(x,y), [x,-2,2], [y,-2,2]);

f(x,y):= ((x^2) - (y^...

contour_plot(f(x,y), ...

Calculate

contour_plot
contour_plot(f(x,y), [x,-3.5,3.5], [y,-3.5,3.5]);

f(x,y):= ((x^99 + y^...

contour_plot(f(x,y), ...

Calculate

contour_plot
contour_plot(f(x,y), [x,-3.5,3.5], [y,-3.5,3.5]);

f(x,y):= ((x^99 + y^9...

contour_plot(f(x,y), ...

Calculate

contour_plot
contour_plot(f(x,y), [x,-3.5,3.5], [y,-3.5,3.5]);

f(x,y):= ((x^99 + y^9...

contour_plot(f(x,y), ...

Calculate

contour_plot-exp
contour_plot (x^2+exp(y), [x,-10,10], [y,-10,10]);

contour_plot (x^2+exp...

Calculate

contour_plot
contour_plot(f(x,y), [x,-1,1], [y,-1,1]);

f(x,y):= (x^2 - y^2);

contour_plot(f(x,y), ...

Calculate