MathGroup Archive 2006

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Listing ALL Options for a mathematica Function

  • To: mathgroup at smc.vnet.net
  • Subject: [mg67443] Re: Listing ALL Options for a mathematica Function
  • From: "Norbert Marxer" <marxer at mec.li>
  • Date: Sun, 25 Jun 2006 03:19:01 -0400 (EDT)
  • References: <e7j0v7$7p4$1@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Hello

Inspecting the Code of MovieContourPlot ...

MovieContourPlot[ function_, xRange_List, yRange_List,
animationRange_List, opts___?OptionQ ] :=
Animate[ ContourPlot[function, xRange, yRange, DisplayFunction ->
Identity, Evaluate[FilterOptions[ContourPlot, opts]]], animationRange,
FilterOptions[Animate, opts] ];

... shows (see FilterOptions), that you can use the options of
ContourPlot and Animate for the function MovieContourPlot.

Options[Animate] gives:

    {Frames -> 24, Closed -> False}

Options[ContourPlot] gives:

{AspectRatio -> 1, Axes -> False, AxesLabel -> None, AxesOrigin ->
Automatic, AxesStyle -> Automatic, Background -> Automatic,
ColorFunction -> Automatic, ColorFunctionScaling -> True, ColorOutput
-> Automatic, Compiled -> True, ContourLines -> True, Contours -> 10,
ContourShading -> True, ContourSmoothing -> True, ContourStyle ->
Automatic, DefaultColor -> Automatic, DefaultFont :> $DefaultFont,
DisplayFunction :> $DisplayFunction, Epilog -> {}, FormatType :>
$FormatType, Frame -> True, FrameLabel -> None, FrameStyle ->
Automatic, FrameTicks -> Automatic, ImageSize -> Automatic, PlotLabel
-> None, PlotPoints -> 25, PlotRange -> Automatic, PlotRegion ->
Automatic, Prolog -> {}, RotateLabel -> True, TextStyle :> $TextStyle,
Ticks -> Automatic}

And this list contains the option "ColorFunction" you were looking for.

Best Regards
Norbert Marxer
www.mec.li


  • Prev by Date: Re: Listing ALL Options for a mathematica Function
  • Next by Date: Integrate the Multivariate normal distribution
  • Previous by thread: Re: Listing ALL Options for a mathematica Function
  • Next by thread: Re: Listing ALL Options for a mathematica Function