Skip to main content

Questions tagged [manipulate]

Questions on the Manipulate function of Mathematica, a function that allows the interactive manipulation of certain parameters in a Mathematica expression.

Filter by
Sorted by
Tagged with
1 vote
0 answers
86 views

I wrote the following code and uploaded it to WolframCloud. ...
Milk's user avatar
  • 1,890
2 votes
1 answer
175 views

I would like to automate visualization of smooth histogram by selecting two datasets to compare. Can I create either a RadioButton or ...
Mitchell Kaplan's user avatar
5 votes
4 answers
430 views

Here is an example how to use Dynamic inside Manipulate for smooth rotation. But it does not work for the following code. ...
azerbajdzan's user avatar
  • 32.8k
5 votes
2 answers
473 views

Evaluate the following code and use your mouse to rotate the graphics - it is fluent without any delay. ...
azerbajdzan's user avatar
  • 32.8k
2 votes
0 answers
64 views

I'm trying to make an applet that allows the user to input an equation v (say in x). However, I am getting a strange behavior ...
Roderic's user avatar
  • 1,449
5 votes
2 answers
293 views

I would like to have the values of the Manipulate control variables {n, ph} programmatically into some variables ...
Teodoro Marinucci's user avatar
3 votes
0 answers
136 views

I have this image and would like to create an animated GIF with the head moving like it's completing a Rubik's Cube. Here I leave you part of the code that I have. Could you help me? Thank you. ...
zeros's user avatar
  • 2,413
3 votes
1 answer
91 views

This is a minimal example of a more complex problem. I need to build the Manipulate function as below with a variable number of parameters, which is why ...
Farewell Legacy's user avatar
0 votes
1 answer
104 views

This is my code: ...
jihoon choi's user avatar
7 votes
1 answer
248 views

I'm looking to adjust the overall size of various controls in Manipulate[] (or just customize each control, in general). The best I could find is the option "ImageSize" but, at best, it just ...
jon's user avatar
  • 73
2 votes
1 answer
142 views

Manipulate[T=2;Plot[x+t,{x,0,1}],{t,T,2T}] I want to show in the control panel t as multiples of T rather than its numeric value. One can instead re-parametrize ...
feynman's user avatar
  • 451
1 vote
1 answer
99 views

I am using Manipulate to change a parameter in a system of differential equations solved with NDSolve in Mathematica. The system of equations is as follows: I am using Manipulate to allow interactive ...
Raihanah Nazihah's user avatar
0 votes
0 answers
127 views

I am faced with the following non-linear differential equation $\frac{d^2x}{dt^2}+\frac{3}{p}\frac{dp}{dt}\frac{dx}{dt}=\frac{1}{x^3p^6}-2x$ I would like to find an expression for x in terms of p. Is ...
KADAR's user avatar
  • 1
0 votes
0 answers
140 views

I am using the numerical analytic continuation method to find quasinormal modes of the black hole 2 with $s=0, l=1$ in arXiv:2209.00679, please see Table 1 of arXiv:2209.00679. However, my code is ...
Robert Xu's user avatar
  • 111
2 votes
1 answer
115 views

I am trying to solve a nonlinear system of differential equations in Wolfram Mathematica using NDSolve and visualize the solution with Manipulate. However, I encounter the following error when running ...
Raihanah Nazihah's user avatar
0 votes
1 answer
125 views

I want to use the Known Isotope of ElementData to choose a specific isotope $(Z,A)$, selecting the $Z$ (Atomic Number), then with IsotopeData I want to have the ...
Mircea Pentia's user avatar
2 votes
1 answer
115 views

I have this small code: ...
Tomas Libutti's user avatar
3 votes
2 answers
173 views

...
Syed's user avatar
  • 63k
0 votes
0 answers
53 views

In the attached figure h1 doesn't show the Epilog properly while h2 does it properly merely by explicitly writing out the yy expression in terms of a. How to resolve this issue of the yy expression ...
feynman's user avatar
  • 451
0 votes
0 answers
68 views

I'm trying to make an "app" that evaluates propagation of error for a user-inputted function. I want to make it where the user can type how many variables there are in the equation and then ...
tritone's user avatar
0 votes
1 answer
147 views

I am dealing with the following set of pde $\alpha(p,q)+2p\frac{\partial\alpha(p,q)}{\partial p}=0$, $\frac{3}{2}\alpha(p,q)+p\frac{\partial\beta(p,q)}{\partial q}=0$, $A\frac{\partial\alpha(p,q)}{\...
Mehdi's user avatar
  • 31
3 votes
1 answer
203 views

I have a function, int1[w] which incorporates two yet-to-be evaluated constants, u a positive real and ...
Richard Burke's user avatar
4 votes
3 answers
306 views

Assume you have created the code for control Manipulate variables and the name thereof somewhere: iter = {{a1, 1, 2}, {a2, 1, 2}}; var = {a1, a2}; Now you want to ...
Daniel Huber's user avatar
  • 60.9k
0 votes
0 answers
98 views

Here's as simple an example as I can construct to represent the issue. The user provides 3 values: var1, var2, var3. I use Symbol here because, in the general case, the user can change the number of ...
user46831's user avatar
  • 701
7 votes
1 answer
272 views

Consider this Manipulate Manipulate[{x, y}, {{x, 0}, -2, 2}, {{y, 0}, -2, 2}] Each of the sliders can move freely and independently. But, I want to impose a ...
Naraghazi's user avatar
  • 357
4 votes
1 answer
155 views

Consider this simple code: ...
Naraghazi's user avatar
  • 357
2 votes
4 answers
182 views

I want to allow users to enter some parametrized plots, using the variable t. I want the variable t to be localized to a ...
Daniel's user avatar
  • 470
3 votes
1 answer
156 views

I have 10 vertices that are part of a set of 8 triangles. Initially they are: ...
Bernardo Marques's user avatar
0 votes
2 answers
84 views

I want to display the function $$ f(\phi)=E\bigg(\phi \log{\phi} + (1-\phi) \log{(1-\phi)}+\chi\phi(1-\phi) \bigg)$$ I have that $E=.505$. Now dependent on the value of $\chi$, the function $f$ has ...
Mjoseph's user avatar
  • 299
0 votes
1 answer
105 views

I'd like to add a detent on a slider in a Manipulate. Here's an example: Manipulate[u = If[Abs[u - 0.5] < 0.2, 0.5, u]; u, {u, 0, 1}] The problem is, as you move ...
rhomboidRhipper's user avatar
1 vote
1 answer
102 views

I want to use a Slider2D to vary two quantities a and b. This works, but how do I label each axis? ...
abwatson's user avatar
  • 2,093
1 vote
0 answers
157 views

How should I eliminate all the excess white space in the panel displaying the graphics from this Manipulate? The display: The source code: ...
murray's user avatar
  • 12.2k
0 votes
1 answer
97 views

I'm totally beginner in Wolfram. And I trying to do some research. If it's not difficult for you, please help me. I have a system of three differential equations with four parameters: beta, delta, p, ...
Виктория Куканова's user avatar
0 votes
1 answer
107 views

I am solving a heat equation in following example: ...
Alex's user avatar
  • 3
0 votes
2 answers
152 views

I have two following eqs: $S = a M^2 + \beta + \alpha Log[a M^2]$ $t =\lambda^5 M^5 (3 + \lambda^2 M^2)/ 3\delta (1+\lambda^2 M^2)^2$ where a, $\alpha$, $\beta$, $\delta$ and are constant parameters. ...
Mehdi's user avatar
  • 31
1 vote
1 answer
94 views

I'm trying to understand InputField behavior when used with Manipulate. Here a small example: ...
AlanR's user avatar
  • 11
1 vote
0 answers
49 views

I noticed in version 14.1 on Win 11 that the behavior of the "StepRightButton" in Manipulator and Manipulate freezes ...
david's user avatar
  • 1,534
1 vote
0 answers
61 views

I have 5-7 controllers in Manipulation. Names and ranges are different, but some options like ...
lesobrod's user avatar
  • 2,590
1 vote
0 answers
80 views

I would like to save a large set of data that has been computed within a Manipulate. Here is a minimal example: ...
Craig Carter's user avatar
  • 7,554
2 votes
2 answers
156 views

I am having trouble illustrating tupoint[c, b, a, d, t] in the right diagram. When using the tax unit slider, the red coordinate should be moving along the graph - illustrating the current tax vs. the ...
Tom's user avatar
  • 395
0 votes
1 answer
82 views

Consider the following input: temp := c Manipulate[RegionPlot[True, {a, 0, 1}, {b, 0, temp}], {c, 0, 1}] I expect to get a region plot with a manipulate slider ...
Ubiquitous's user avatar
0 votes
1 answer
85 views

I have a function with a long list of parameters, for example: ...
neko neko's user avatar
2 votes
1 answer
172 views

I am trying to visualize the objective function (f1), the constraint (isoq), and the optimal solution. The optimal solution is at the tangency of both graphs. I can plot the constraint, but the ...
Tom's user avatar
  • 395
0 votes
0 answers
113 views

I want to use FindRoot reproducing the following result in the table 1 of the article "Scalar gravitational perturbations and quasinormal modes in the five-dimensional Schwarzschild black ...
Robert Xu's user avatar
  • 111
1 vote
1 answer
107 views

Can I get Manipulateto allow me, once the plot appears, to hover my mouse over the plot and scroll my mouse wheel to vary the parameter $a$? Currently I need to ...
apg's user avatar
  • 2,303
1 vote
2 answers
148 views

I am trying to create a module that allows users to cycle lists to look for a pattern and need a way to programmatically establish the number of controllers depending on the number of lists being used....
Chris Kennedy's user avatar
2 votes
3 answers
197 views

I made a dynamic vector visualization ...
Alice Schwarze's user avatar
0 votes
1 answer
99 views

I am facing the following issue; I have the solution of a ParametricNDSolveValue and would like to plot several solutions with varying parameter in the same Manipulate to see qualitative differences. ...
IronicOwl's user avatar
  • 115
0 votes
0 answers
74 views

Heyhey I am trying to solve a differential equation for the time evolution of a probability distribution. It solves just fine using NDSolveValue and I am able to plot the solution for specific times, ...
IronicOwl's user avatar
  • 115
1 vote
0 answers
47 views

When there are Cells containing Manipulate this often leads to Errors in cells right at startup. Say I write willReceiveValue={1,2} in one cell and in another <...
Kvothe's user avatar
  • 4,931

1
2 3 4 5
43