Robert M. Corless Department of Applied Mathematics University of Western Ontario London, Canada
Copyright 2001 by Robert M. Corless All rights reserved
Useful one-word commands
Использование монокоманд
Plotting in Maple
Графика в Maple
Contour plots and other plots
Контурные графики и другие рисунки
> contourplot( f2, x=-Pi..Pi, y=-Pi..Pi, grid=[100,100], colour=black, axes=BOXED, scaling=CONSTRAINED );
> sol500 := dsolve( {eq500,x(0)=2,D(x)(0)=0}, x(t), numeric, range=0..1000, stiff=true );
> plots[odeplot]( sol500, [x(t),diff(x(t),t)], colour=black );
> PredatorPrey := {diff(x(t),t) = -3*x(t)+4*x(t)^2-x(t)*y(t)/2-x(t)^3, diff(y(t),t) = -2.1*y(t)+x(t)*y(t)};
> sols := {seq( dsolve( PredatorPrey union ics[i], {x(t),y(t)}, numeric, range=0..100 ),i=1..nops(ics)) }:
С официального разрешения © 2002 Waterloo Maple, Inc