Re: Re: Take away the sliders
- To: mathgroup at smc.vnet.net
- Subject: [mg101181] Re: [mg101156] Re: [mg101122] Take away the sliders
- From: Murray Eisenberg <murray at math.umass.edu>
- Date: Fri, 26 Jun 2009 06:49:19 -0400 (EDT)
- Organization: Mathematics & Statistics, Univ. of Mass./Amherst
- References: <200906251114.HAA10701@smc.vnet.net>
- Reply-to: murray at math.umass.edu
I don't understand the FrameLabel syntax used below. According to the docs, the value for the option, when all 4 boundaries of the frame, etc., are to be labeled, is { {left, right}, {bottom, top} }. For example: Graphics[Disk[],Frame->True, FrameLabel->{{"left","right"},{"bottom","top"}}] The preceding puts those labels where their names lead you to expect. On the other hand, the following input... Graphics[Circle[],Frame->True, FrameLabel->{"left","right","bottom","top"}] puts "left" on the bottom, "right" on the left, "bottom" on the top, and "top" on the right. The only non-nested list syntax indicated in the More Information at ref/FrameLabel is of the form {bottom, left}. Bob Hanlon wrote: > Manipulate[a + b, > {{a, 0}, ControlType -> InputField}, > {{b, 0}, ControlType -> InputField}, > FrameLabel -> {None, None, "a + b", None}] > > Manipulate[a + b, > {{a, 0}, InputField}, > {{b, 0}, InputField}, > FrameLabel -> {None, None, "a + b", None}] > > ---- Lobotomy <labbman at gmail.com> wrote: > ...I just want to use the boxes below the sliders to enter the parameter > values. I dont want to use the sliders or the other functions coming > with Manipulate. Is there another commando i can use than manipulate, > or just a way to remove the sliders? -- Murray Eisenberg murray at math.umass.edu Mathematics & Statistics Dept. Lederle Graduate Research Tower phone 413 549-1020 (H) University of Massachusetts 413 545-2859 (W) 710 North Pleasant Street fax 413 545-1801 Amherst, MA 01003-9305
- References:
- Re: Take away the sliders
- From: Bob Hanlon <hanlonr@cox.net>
- Re: Take away the sliders