Tagged Questions
2
votes
1answer
64 views
Manipulating plot of random iterated function system fractal
I'm generating the Sierpinski Gasket by implementing a chaos game in mathematica. What I'd like to do is create an interactive manipulation with a slider, whereby moving it forward, plots all the ...
0
votes
3answers
66 views
Evaluation in Manipulate [duplicate]
I have an expression assigned to a variable. For example:
exp1 = a*x+b
Now I would like to plot it using something like this
...
7
votes
1answer
163 views
Simple problem with Manipulate and Plot
Would anyone have an idea why the following doesn't work:
rule = {z -> x^2 + 2 x + y};
Manipulate[
Plot[z /. rule, {x, 0, 10}],
{{y, 2, "y"}, 1, 5}
]
But ...
0
votes
1answer
81 views
How to manipulate a Fourier sine series?
I would like to plot the Fourier sine series for $f(x) = x$.
I would like to manipulate the parameter n from $0$ to $10$ and plot the sine waves over $(0,1)$. My ...
3
votes
2answers
190 views
Plotting heat equation in a Manipulate expression
I have a 2D heat equation $u_t = \alpha (u_{xx} + u_{yy})$ with conditions:
$u(x, y, 0) = 300$,
$u_y(x, 0, t) = \mu_1(x)$,
$u_y(x, 1, t) = \mu_2(x)$,
$u(0, y, t) = \mu_3(y)$,
$u(1, y, t) = ...
0
votes
2answers
49 views
How to manipulate plot range with fixed axes
I want to achieve something like this
Manipulate[Plot[Sin[x], {x, 0, r}, PlotRange -> {{0, 10}, {-1, 1}}], {r, 0.1, 10}]
but my function in place of ...
3
votes
1answer
99 views
Manipulate a Plot that contains a variable that contains symbol
This snippet
mm = m
Manipulate[{mm, Plot[mm x, {x, 0, 1}]}, {m, 0, 1}]
(m is not defined anywhere) produces a sadly fixed ...
3
votes
1answer
53 views
Restricting a plotted expression to reals in a Manipuate
I have an expression from which I'm trying to create a plot that I can manipulate. The expression contains Abs, and I only want to have it evaluated for reals. What ...
1
vote
1answer
59 views
Use Results from Manipulate Plot NDSolve to create another plot versus variable used in DE
I created my plot using using this input:
...
3
votes
3answers
102 views
How to control the speed in Manipulation
As the title says, I want to control the speed when I use Manipulate. I have the following piece of code
...
3
votes
2answers
120 views
Click on a curve to start Manipulating another function
I'm able to plot two lists with a tooltip on the curves to display the name of the curve:
...
4
votes
1answer
74 views
How can I highlight the vanishing-partials in an interactive 3D plot?
I am using Manipulate and Plot3D to plot a function with two real variables and two extra parameters.
...
3
votes
1answer
171 views
Exporting a Video of a Simulation of Pendulum Motion
In a series of previous questions, I asked how to solve a series of differential equations describing a series of coupled pendulums, and then how to plot this data by coloring the different pendulums. ...
3
votes
1answer
63 views
5
votes
1answer
89 views
How to stop Manipulate changing view point
When using the following manipulate I can rotate the plot and manipulate the value without my view point changing;
...
7
votes
6answers
260 views
Manipulate and Turning Expressions into Functions
I've been trying to use Manipulate to do interactive plotting, but I've been running into a few problems with saved expressions. I have an expression saved as "func" and I want to work with it and ...
2
votes
3answers
152 views
How to Dynamically Locate (get coordinates) of a point, inside a Manipulate?
I've been searching all around the "Documentation Center" and other forums and just can't get to solve this issue. I'd like to dynamically locate a point (get it's coordinates) inside a Manipulate. ...
8
votes
5answers
292 views
Manipulate Exp[I θ]+b Exp[-I θ]
I've uploaded an image showing a demonstration I'd like to create, but I definitely need help. There is a lot of talent on this list, so maybe someone can help me get started learning how to add ...
1
vote
2answers
273 views
Manipulating PlotRange
Currently, I am working with some dynamic simulations of mechanical/electrical systems (in this case a kitchen scale). The main simulation is running smoothly but while building a nice GUI around the ...
2
votes
1answer
130 views
Plotting a dot product
From a conic equation obtained from a dot product, I want to plot its 2D graph, while being able to manipulate the variable.
...
1
vote
2answers
221 views
Combining manipulated plots
Let's say I have two manipulated plots:
Manipulate[Plot[Sin[a x], {x, 0, Pi}], {a, 0, 10}]
Manipulate[Plot[Cos[b x], {x, 0, Pi}], {b, 0, 10}]
How can I create a ...
3
votes
2answers
356 views
2
votes
1answer
170 views
Why is LogLogPlot[] slower than Plot[]?
I notice that LogLogPlot runs quite bit more slowly than ordinary Plot. For example, consider the following two blocks of code ...
2
votes
2answers
312 views
Manipulate a Differential Equation result
I want to Manipulate the result of Differential Equation like :
...
-1
votes
1answer
209 views
Speed Up SphericalPlot3D
I was wondering if I could speed up SphericalPlot3D? I tried editing PlotPoints, and ...
2
votes
1answer
180 views
Manipulating an arbitrary-precision ContourPlot
I have a function, say
minimizeme[ω_][β_][ϵ_] = ϵ^2 ω-Log[2 (Cosh[2 β]+Cosh[2 β ϵ])]/(2 β);
I want to make a high-precision dynamic ...
5
votes
3answers
188 views
Proper way to handle free variables in manipulate/plot?
It took me a while today to figure out that Manipulate (used with Plot) requires that the variable I'm manipulating be an actual ...
9
votes
3answers
454 views
RevolutionPlot3D: but NOT revolving about the z axis
I want to demonstrate generating a solid of revolution by revolving a planar region about, say, a horizontal axis. However, RevolutionPlot3D doesn't seem to have an ...
0
votes
0answers
170 views
Alignment and Plot size problem in PopupMenu
I have three plots in an OpenerView named "PopupWindow", "MouseOver" .
...
7
votes
3answers
400 views
PolarPlot render oddities
I apologize if this is a obvious question and answer, I don't often use Mathematica to display plots or graphics in general to be honest. So, I was tutoring my cousin yesterday in relation to Polar ...
1
vote
0answers
162 views
Adding a Parabola to a Catenary in Plot with the same Length [closed]
I wanted add a Parabola to my Manipulate/Plot, that have the same length and the same hanging points as the Catenary, so that when I Manipulate(Modify) the position of the Points A and B of the ...
8
votes
2answers
320 views
How can I animate a set of points imported from file?
I have an external program which generates a set of data - X points at the time t1, X points at the time t2 and so on. These points are stored in CSV file and I can change the format if necessary.
...
4
votes
2answers
92 views
Manipulate and ExclusionsStyle
How can I change ExclusionsStyle for a plot inside Manipulate?
Here's a sample that (though it shouldn't) seems to produce ...
5
votes
4answers
293 views
Display position information out of ListPlots inside a Manipulate
I often have the situation where I'll use Manipulate[] to compare and examine 2 or more lists. A simplified example follows:
...
5
votes
1answer
161 views
Create a CDF file with a plot that cannot be edited by double-clicking
I have created a CDF file that contains a Manipulate object with a plot. I intend to embed the file in a web site, so that users can use interactive sliders to ...
16
votes
6answers
1k views
Using ListPointPlot3D to simulate 2D plots moving in time
I wrote a 1D solver for the heat equation $u_t=u_{xx}$, and I can animate the solution using normal ListPlot command, where the x-axis is the rod length, and the ...
