Re: How to add window with values a,b
- To: mathgroup at smc.vnet.net
- Subject: [mg117473] Re: How to add window with values a,b
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Sat, 19 Mar 2011 05:21:56 -0500 (EST)
Manipulate[ Plot[x^5 + a x + b, {x, -4, 4}, PlotRange -> {-500, 500}], {a, -100, 100, Appearance -> "Labeled"}, {{b, 0}, -100, 100, Appearance -> "Labeled"}] Bob Hanlon ---- Artur <grafix at csl.pl> wrote: ============= Dear Mathematica Gurus, I would like to add to plot draw two windows with exact position of ruler for a and b (as numbers) Clear[a, b]; Manipulate[Plot[x^5 + a x + b, {x, -4, 4}], {a, -100, 100}, {b, -100, 100}] How to do that? Best wishes Artur