MathGroup Archive 2011

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

Search the Archive

Re: How to add window with values a,b

  • To: mathgroup at smc.vnet.net
  • Subject: [mg117458] Re: How to add window with values a,b
  • From: Tomas Garza <tgarza10 at msn.com>
  • Date: Sat, 19 Mar 2011 05:19:10 -0500 (EST)

Perhaps something like

Clear[a,b];Manipulate[Plot[x^5+a x+b,{x,-4,4},Epilog->Inset[Style[Grid[{{"a= "<>ToString[a]},{"b = "<>ToString[b]}},Frame->True],9,"Label"],{-8,800=
}],PlotRange->{{-10,10},{-1000,1000}}],{a,-100,100,Appearance->"Labeled"},{b,-100,100,Appearance->"Labeled"}]
-Tomas
> Date: Fri, 18 Mar 2011 05:58:29 -0500
> From: grafix at csl.pl
> Subject: [mg117417] How to add window with values a,b
> To: mathgroup at smc.vnet.net
>
> 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
>


  • Prev by Date: Re: Wolfram, meet Stefan and Boltzmann
  • Next by Date: Mathematica 8 bug (related to Graph[])
  • Previous by thread: Re: How to add window with values a,b
  • Next by thread: Re: How to add window with values a,b