1
$\begingroup$

How can I create a new window with a Manipulate expression?

Currently I'm using:

Manipulate[ {ODE, ViewPD, IC}, Column[{Row[{Style["ODE: ", Italic] }]}], {{ODE, x^2 + r, "x[t]="}, ControlType -> InputField}, Grid[{{"Phase Diagram: "}}], {{ViewPD, False, "Show PD:"}, {True, False}, ControlType -> RadioButtonBar}, {{IC, "{{r,x}}", "Initial Conditions:"}, InputField}, Grid[{{"Vector Field: "}}], {{ViewPD, False, "Show PD:"}, {True, False}, ControlType -> RadioButtonBar}, {{IC, "{{r,x}}", "Initial Conditions:"}, InputField}, Grid[{{"Poincare Sections: "}}], {{ViewPD, False, "Show PD:"}, {True, False}, ControlType -> RadioButtonBar}, {{IC, "{{r,x}}", "Initial Conditions:"}, InputField}, ControlPlacement -> Left] 

The result is displayed in the notebook containing the Manipulate expression. Now I need the result to be displayed in a new window.

$\endgroup$
2
  • $\begingroup$ Welcome to Mathematica.SE. It would be good if you could format your post for better readability. Help on this can be found on the top right corner of the edit box. $\endgroup$ Commented Sep 21, 2015 at 19:55
  • 4
    $\begingroup$ I use Guess Who It Is' answer here a lot. mathematica.stackexchange.com/questions/92470/… Let me know if this is what you're looking for. $\endgroup$ Commented Sep 21, 2015 at 20:05

1 Answer 1

1
$\begingroup$

Whenever I write manipulate functions I: execute the code,delete everything but the running manipulate window, and then save as a computable document (.cdf). Then whenever I open it it's just the manipulate window.

I personally don't mind the extra white space, but if you do maybe check out belisarius's post in Running a function with manipulators in a popup window, it appears to do what you're looking for.

Edit: Here's an example of what it looks like. enter image description here

$\endgroup$
1
  • $\begingroup$ Thank you very much for your help, yes it what he wanted. $\endgroup$ Commented Sep 22, 2015 at 16:12

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.