Questions on the Manipulate function of Mathematica, a function that allows the interactive manipulation of certain parameters in a Mathematica expression.
1
vote
2answers
115 views
How can I crop manipulator from a plot
I wanted to know how can I crop a Manipulator from a plot. the code for plot is
...
3
votes
1answer
189 views
Manipulating a catenary in Mathematica
I have a catenary curve in Mathematica, and I wanted to add a variator (dimmer) with Manipulate, so that the user can modify the value of the x/y-coordinate of the ...
7
votes
2answers
160 views
Moving controls from Manipulate to a Palette ( or similar GUI object )
Consider the following snippet as a reference.
...
4
votes
3answers
244 views
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.
...
6
votes
2answers
163 views
Manipulators and Dynamic in more concise code
Is there a way to update dynamic variables through a function. I was looking back at one of the answers from Heike where she showed me how to make my custom ...
6
votes
2answers
300 views
Formatted text in a Dynamic or Manipulate control
I am using a Manipulate control to show different calculations for the same user-specified parameters. I would like to show the results for the calculation the ...
5
votes
2answers
241 views
How to add graphics options to an already produced plot having manipulator?
I am new to Mathematica and stuck with one problem i.e.
How can I add a graphics option to an already made plot which a manipulator to control itself.
...
4
votes
1answer
191 views
Noticeable slowdown in graphical performance when using manipulate
I have been making these mathematica 3D objects that involve a molecule with some sort of surface displayed above them. This is done fairly easily by:
...
9
votes
2answers
207 views
Restrict Locator to a certain graphic inside Manipulate
I would like to restrict the Locator inside Manipulate to a certain graphic. For example if I display two graphs, I would like to be able to click on the right one and use this information in other ...
6
votes
2answers
141 views
Control which variables get embedded inside Manipulate
While trying to analyse several different datasets I got what I thought was a good idea: define a "function" that returns a Manipulate object. But this has some ...
6
votes
1answer
158 views
Stopping Evaluation of Manipulate after it goes through once
I do quite a bit of textual analysis with Mathematica, and am currently making some Manipulate objects to walk people through key terms in the database.
One issue ...
2
votes
2answers
271 views
Scoping inside of Module and Manipulate
This is driving me nuts: I'm trying to control the parameters for a relatively large system of ODEs using Manipulate.
...
2
votes
2answers
218 views
Question about making TabView remember what tab to open
Background: Consider the following ( for the purpose of illustrating this question ) simplified, but working snippet of code.
...
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 ...
9
votes
3answers
253 views
How to use Locators on a graphic in a tabview
Background:
I want to split graphics in a Manipulate in several parts in a tabview control. But the tabview somehow interferes with the locators as in the following simplified example:
...
9
votes
3answers
257 views
Interdependent controls in Manipulate [duplicate]
Possible Duplicate:
How to create interrelated sliders?
locking a value when manipulating variables
I need to create a Manipulate with two control ...
16
votes
3answers
398 views
How to modularize custom controls for Manipulate?
Background: My Manipulate programs are becoming (too) long. I want to split them up in to independent modules, if at all possible. Take this program as a prototype:
...
5
votes
3answers
179 views
Question about modifying a Slider2D control
Background: I want to develop a custom control, based on a 2D slider. I currently have this ( working ) example.
...
6
votes
3answers
201 views
Using function with multiple definitions in Manipulate
I'm trying to use Manipulate to visually try out different values of lambda in a Box-Cox transformation. I've created a boxcox ...
10
votes
4answers
469 views
Manipulate BarChart with Mathematica
In the following minimal working example:
Manipulate[BarChart[{a,b}],{a,1,2},{b,1,2}]
I'd like to be able to control the size of the bars by using some sort of ...
18
votes
2answers
277 views
What is the equivalent of a prototypical Manipulate in lower level functions?
Background: In the Mathematica tutorial 'Dynamic Interactivity' I read that there is a way of developing GUIs in Mathematica that do not use Manipulate. I want to ...
4
votes
1answer
160 views
How to control variables of outer and inner Manipulates?
Consider the following ( working ) snippet:
...
5
votes
4answers
291 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:
...
2
votes
1answer
113 views
How to set different labelstyles for controls in manipulate?
Background:
Manipulate[
{jj, kk},
{{jj, 2, "Select j"}, 1, 11},
{{kk, 2, "Select k"}, 1, 11},
LabelStyle -> {Bold, Medium}
]
In the example above ...
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 ...
5
votes
4answers
250 views
Shading in squares crossed by a diagonal
You have a rectangle and it is diagonal. How many squares will be crossed by the diagonal (I guess assuming the side length of the rectangle are nice whole numbers)
I've seen an implementation in ...
6
votes
1answer
153 views
Interpreting text entry and splitting it in a Manipulate text field?
I have the following program that plots the number of trigram appearances across a corpus of textual information between 1964 and 1989 (apologies for the messy code):
...
8
votes
2answers
104 views
Question about scoping data in a multi-level Manipulate construction
Background: In a module containing an outer / inner manipulate I select the key of data with a dropdownlist in the outer manipulate. Data is read and displayed in the inner manipulate for edit ...
16
votes
1answer
359 views
What is the proper method to load a Mathematica package inside a DynamicModule
I have a DynamicModule that requires loading of Mathematica packages. The usual methods do not seem to apply (...
5
votes
2answers
635 views
Export animation of a Manipulate autorun sequence?
I've got a Manipulate that does a vector field plot. Basically a function that returns a list of Graphics objects and a couple of sliders:
...
7
votes
1answer
219 views
Locking a value when Manipulating variables
I'm trying to achieve something similar to Bret Victor's brilliant Scrubbing Calculator in Mathematica.
By using Manipulate I'd like to change the values of the variables such that if I modify one ...
5
votes
1answer
151 views
How to add several Locators to a Graphic with a mouse click?
Background: Suppose I have something like this:
...
3
votes
1answer
190 views
How to programmatically create a Manipulate in another Manipulate?
Background: the following Manipulate works as expected
...
8
votes
1answer
312 views
How to specify the InputField as a String in Manipulate
I'm putting together a Demonstration which utilizes a function which operates on a (manipulated) String, and I'd like the ...
12
votes
3answers
243 views
What is an efficient way of selecting multiple colors via Manipulate?
Background: The following snippet is what I (intend to) use in a Manipulate form where up to 12 different colors can be selected:
...
10
votes
1answer
341 views
How to generate a real-time stream of data?
I'm experimenting with Inversion-of-Control (callback) programming patterns, and I would like a way to generate streams of data at specified real-time intervals. I came up with the illustrated way to ...
12
votes
1answer
127 views
Manipulate not working inside DialogInput
Some controls do not appear to work with Manipulate inside a DialogInput. For example:
...
5
votes
2answers
191 views
Manipulate Evaluation Order Problem
I seem to be getting some unintended results from a nested Manipulate that I have not been able to resolve. I boiled down the problem I'm having to a simplified ...
4
votes
1answer
197 views
What changes in Dynamic have occurred from Mathematica 7 to Mathematica 8 that might induce incompatibilities?
I have a function that outputs a Manipulate (say
FAnimated[params_]:= Manipulate[F[params,t], {Time, Animator[t]}]
where F ...
4
votes
1answer
335 views
How to use button to evaluate a cell
I would like to create a button that when I click it it evaluates a cell containing a manipulate code. Also, I would like another button that when I click the output of manipulate disappears.
How can ...
8
votes
1answer
262 views
Making a “cached” version of `Manipulate[]`?
I have a function that is a bit too slow for Manipulate[]. Right now I plan to cache outputs outside the manipulation and just have the manipulator select among ...
4
votes
2answers
294 views
A problem with Deploy and Locator in a Manipulate
I recently asked a question about Locators not behaving properly (see Locators and Table within a Manipulate are not behaving) and thought I had figured out the answer. However, as I played around to ...
1
vote
1answer
247 views
Locators and Table within a Manipulate are not behaving
I am putting together a Manipulate on vector addition for my intro physics class and everything works well except when I include a Graphics that has a Table within. The code is below. There are three ...
10
votes
2answers
377 views
Adding controls for multiple functions in Manipulate
I am learning Mathematica and the Image Processing functions. I have the following Manipulate procedure which works fine:
...
10
votes
1answer
147 views
Manipulate[] inside DialogInput[]
I would like to get input from an interactive dialog that uses Manipulate[]. But I find that my Manipulate[] breaks when I put ...
3
votes
1answer
721 views
Embed CDF into an Apple iBook?
Edit
From the comments I received and verifying the information about CDF at wolfram.com, it appears that it is presently impossible to embed CDF into iBooks.
WRI does not appear to be happy with this ...
13
votes
2answers
275 views
How can I set the speed of manipulate play button?
Can you set the speed at which a Manipulate plays when the play button is clicked?
3
votes
1answer
191 views
20
votes
3answers
710 views
Manipulate with a variable number of sliders
I have a function that operates on a list of variable-length $n$. I would like to create a Manipulate[] that has $n$ sliders, one for each list element, each ...