MathGroup Archive 2012

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

Search the Archive

Re: M9. Error messages when assign ContourPlot graphic to variable

  • To: mathgroup at smc.vnet.net
  • Subject: [mg128985] Re: M9. Error messages when assign ContourPlot graphic to variable
  • From: Bob Hanlon <hanlonr357 at gmail.com>
  • Date: Fri, 7 Dec 2012 01:37:13 -0500 (EST)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-newout@smc.vnet.net
  • Delivered-to: mathgroup-newsend@smc.vnet.net
  • References: <20121206095953.6A0DF6910@smc.vnet.net>

$Version

"9.0 for Mac OS X x86 (64-bit) (November 20, 2012)"

pf[a_, b_] = ParametricNDSolveValue[
    {y''[x] == -a y[x], y[0] == a, y'[0] == b},
    y, {x, 0, 20}, {a, b}][a, b];

ContourPlot[pf[a, b][5] == 0,
 {a, 0, 5}, {b, 0, 5},
 ContourStyle -> {Red, Thick}]

ContourPlot[pf[a, b][5],
 {a, 0, 5}, {b, 0, 5},
 ContourStyle -> {Automatic, Automatic,
   {Red, Thick}, Automatic, Automatic}]

cp = ContourPlot[pf[a, b][5],
   {a, 0, 5}, {b, 0, 5}];

Manipulate[
 Show[
  cp,
  ContourPlot[
   pf[a, b][5] == value,
   {a, 0, 5}, {b, 0, 5},
   ContourStyle -> Red]],
 {{value, 0, "Value"}, Range[-4, 8, 2]}]


Bob Hanlon


On Thu, Dec 6, 2012 at 4:59 AM, Grischika <Grischika at mail.ru> wrote:
> Running this code
> pf = ParametricNDSolveValue[{y''[x] == -a y[x], y[0] == a,
>    y'[0] == b}, y, {x, 0, 20}, {a, b}];
> ContourPlot[{pf[a, b][5] == 0}, {a, 0, 5}, {b, 0, 5}]
>
> then copy and past this image to input cell. Execute the cell. The following message appears:
>
> ParametricFunction::argrx: ParametricFunction called with 0 arguments; 6 arguments are expected. >>
>
> Windows XP 32 bit
> Mathematica 9.0.0
>
> Grigory
>



  • Prev by Date: Re: Mathematica 9: bug in merging cells
  • Next by Date: Interactively placing points onto 3D surfaces
  • Previous by thread: M9. Error messages when assign ContourPlot graphic to variable
  • Next by thread: Re: M9. Error messages when assign ContourPlot graphic to variable