MathGroup Archive 2013

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

Search the Archive

Re: controllers in manipulate

  • To: mathgroup at smc.vnet.net
  • Subject: [mg131907] Re: controllers in manipulate
  • From: Francisco Gutierrez <fgutiers2002 at yahoo.com>
  • Date: Mon, 28 Oct 2013 23:24:36 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-outx@smc.vnet.net
  • Delivered-to: mathgroup-newsendx@smc.vnet.net
  • References: <20131024034454.700536A57@smc.vnet.net>
  • Reply-to: Francisco Gutierrez <fgutiers2002 at yahoo.com>

Many thanks to Bob Hanlon, Tomas Garza, Matthias Bode, Murray Eisenberg, Bob Hanlon, Alexei Boulbitch and others for giving me a hand with this and these great pieces of code. Problem solved!
Francisco


On Wednesday, October 23, 2013 10:49 PM, Narasimham <mathma18 at gmail.com> wrote:
> How can I put the controls so that the
> control of x is a slider and the control of
> y is a radio button?

You mean step of x << step of y ? In the following, y is also a slider with unit step intervals set into slider.

Manipulate[ 
Plot3D[ Cos[m x] Cos [ n y], {x, 0, 2 Pi}, {y, -Pi, Pi}]  , {{m, 1.2}, -4, 4, .1, Appearance -> "Labeled"}, {{n, 2}, -5, 4, 1}]

Narasimham



  • Prev by Date: Re: Mathematica and MacOSX 10.9 Mavericks
  • Next by Date: Re: Finding branches where general solution is possible
  • Previous by thread: Re: controllers in manipulate
  • Next by thread: Using same $UserBaseDirectory for Mac & Windows versions