Skip to main content

dynamic - Manipulate in Manipulate


Question 63982 (Altering values in Manipulate with dynamically generated controls) got a very interesting answer from @belisarius, in which he used a Manipulate within a Manipulate to achieve the goal. I am puzzled by his solution and will demonstrate my embarrassment by a somewhat simplified example.


In Mathematica there are actually two independent sets of variables: those that are used by the frontend and those that are used by the kernel. All interactivity in Mathematica, such as Manipulate, Button, ... is based on interaction with the user and therefore belongs completely to the domain of the frontend. But we use kernel commands with kernel variables to construct these user interfaces. Fortunately, in Mathematica it is practically never necessary to bother about the difference between frontend and kernel variables, the frontend and the kernel are very well integrated.


Let us start with a simple example, based on the question mentioned above. The button displays the current value of the two variables x and s.


Row[{Manipulate[x, {{x, s}, -1, 1}, Button[Dynamic[{x, s}], s = RandomReal[{-1, 1}]]],
Spacer[30], Dynamic[{x, s}]}]


In the second argument of Manipulate, the s is the initial value for x. When we move the slider, we see that in the Manipulate expression the value of x is continuously updated but not outside this expression; the variable s does not change at all. That is as expected. Moreover, when we look at the input form of the Manipulate expression, we see that the current value of x is stored in the second argument of Manipulate at the position of s. That is well documentated. There is no connection at all between s and x. When we press the button, the value of both the kernel s and the frontend s changes, but is has no effect on x.


Also, when we inspect the box structure of the displayed Manipulate expression with the toggle Ctrl-E, we see a.o. the variable \$CellContext`x$$. That is, I think, the indication of a frontend variable that has no connection with a kernel variable at all. Its value is displayed on the button, but not outside the Manipulate expression. Moreover, there is a variable $CellContext`s, which, I think, is a frontend variable that is automatically linked to the kernel variable s. So we see its value both on the button and in the Dynamic output.


The following command is a simplified form of the construction of @belisarius. We wrap the Manipulate in another Manipulate:


Row[{Manipulate[Manipulate[x, {{x, s}, -1, 1}, Button[Dynamic[{x, s}], s = RandomReal[{-1, 1}]]]],
Spacer[30], Dynamic[{x, s}]}]

When we move the slider for x, we see as before the updating on the button, but not in the Dynamic output. When we click on the button for s, of course the value of s changes, but now the value of x is set to the value of s. That means that the effect of the outer Manipulate is that by clicking on the button the inner Manipulate is completely re-evaluated, including the initialization of x to s. It might be simple to understand, but I fail to see an explanation for that.


Another effect is that in the input form we no longer see the values of x and s, and that in the box form the variable \$CellContext`x$$ is no longer is visible. Instead we have the frontend variable \$CellContext`x that is now NOT coupled to the kernel variable x.


Any hint that helps me in better understanding what is going on here is highly appreciated.




Comments

Popular posts from this blog

plotting - Filling between two spheres in SphericalPlot3D

Manipulate[ SphericalPlot3D[{1, 2 - n}, {θ, 0, Pi}, {ϕ, 0, 1.5 Pi}, Mesh -> None, PlotPoints -> 15, PlotRange -> {-2.2, 2.2}], {n, 0, 1}] I cant' seem to be able to make a filling between two spheres. I've already tried the obvious Filling -> {1 -> {2}} but Mathematica doesn't seem to like that option. Is there any easy way around this or ... Answer There is no built-in filling in SphericalPlot3D . One option is to use ParametricPlot3D to draw the surfaces between the two shells: Manipulate[ Show[SphericalPlot3D[{1, 2 - n}, {θ, 0, Pi}, {ϕ, 0, 1.5 Pi}, PlotPoints -> 15, PlotRange -> {-2.2, 2.2}], ParametricPlot3D[{ r {Sin[t] Cos[1.5 Pi], Sin[t] Sin[1.5 Pi], Cos[t]}, r {Sin[t] Cos[0 Pi], Sin[t] Sin[0 Pi], Cos[t]}}, {r, 1, 2 - n}, {t, 0, Pi}, PlotStyle -> Yellow, Mesh -> {2, 15}]], {n, 0, 1}]

plotting - Plot 4D data with color as 4th dimension

I have a list of 4D data (x position, y position, amplitude, wavelength). I want to plot x, y, and amplitude on a 3D plot and have the color of the points correspond to the wavelength. I have seen many examples using functions to define color but my wavelength cannot be expressed by an analytic function. Is there a simple way to do this? Answer Here a another possible way to visualize 4D data: data = Flatten[Table[{x, y, x^2 + y^2, Sin[x - y]}, {x, -Pi, Pi,Pi/10}, {y,-Pi,Pi, Pi/10}], 1]; You can use the function Point along with VertexColors . Now the points are places using the first three elements and the color is determined by the fourth. In this case I used Hue, but you can use whatever you prefer. Graphics3D[ Point[data[[All, 1 ;; 3]], VertexColors -> Hue /@ data[[All, 4]]], Axes -> True, BoxRatios -> {1, 1, 1/GoldenRatio}]

plotting - Adding a thick curve to a regionplot

Suppose we have the following simple RegionPlot: f[x_] := 1 - x^2 g[x_] := 1 - 0.5 x^2 RegionPlot[{y < f[x], f[x] < y < g[x], y > g[x]}, {x, 0, 2}, {y, 0, 2}] Now I'm trying to change the curve defined by $y=g[x]$ into a thick black curve, while leaving all other boundaries in the plot unchanged. I've tried adding the region $y=g[x]$ and playing with the plotstyle, which didn't work, and I've tried BoundaryStyle, which changed all the boundaries in the plot. Now I'm kinda out of ideas... Any help would be appreciated! Answer With f[x_] := 1 - x^2 g[x_] := 1 - 0.5 x^2 You can use Epilog to add the thick line: RegionPlot[{y < f[x], f[x] < y < g[x], y > g[x]}, {x, 0, 2}, {y, 0, 2}, PlotPoints -> 50, Epilog -> (Plot[g[x], {x, 0, 2}, PlotStyle -> {Black, Thick}][[1]]), PlotStyle -> {Directive[Yellow, Opacity[0.4]], Directive[Pink, Opacity[0.4]],