Tagged Questions
0
votes
1answer
24 views
Using Locator coordinates to index a matrix during drawing
I would like to "draw" into a matrix in Mathematica. That is, I would like to use the mouse to (say, using EventHandler) change the value at a matrix index to 1 from, say, 0. The simplest approach ...
0
votes
1answer
87 views
Wolfram Mathematica: Dynamic which track only one variable
I want this:
arr[[n]] = b;
automatically reevaluate only if b changed.
How can I do it?
4
votes
2answers
272 views
Mathematica Dynamic List Manipulation
I am stuck on what I think should be a relatively simple concept. I am not understanding how Dynamic[] functions with regarding incremental list manipulations. Consider the following statements:
...
0
votes
1answer
109 views
Mathematica undocumented Dynamic solution needed
I'm trying to have a slider update a derivative value for 2 Polynomial curves and return that dynamically to a variable to be used outside of dynamic. I get the slider to move and the value for the ...
7
votes
2answers
210 views
Specify local Dynamic in Grid
I would like to update specific parts of a Grid dynamically in different ways. Consider the following toy example: I have two rows: one must be updated one-by-one (a, b, c), as these symbols depend on ...
7
votes
2answers
212 views
Creating robust real-time monitors for variables
We can create a real-time monitor for a variable like this:
CreatePalette@Panel@Row[{"x = ", Dynamic[x]}]
(This is more interesting and useful if x happens to be something like $Assumptions. It's ...
3
votes
3answers
235 views
Mathematica: dynamic number of menus
I am trying to make a dynamic number of drop-down menus in a plot, to plot a various number of curves.
I have previously requested help to plot this data, and it worked well.
First thing
...
5
votes
3answers
461 views
Mathematica dynamic to plot matrix data
I am trying to dynamically plot data contained in a matrix with Mathematica 7. The data is contained in it like this, obtained via a chemical model.
[year H He Li C ... C8H14+,Grain- ...
6
votes
2answers
354 views
Print Dynamic variable inside DynamicModule
Why is it that not the value of b gets printed in the following example but the symbolname? How can I force the printing of the actual dynamic value of the variable?
a = {1, 2, 3};
...
0
votes
2answers
185 views
Filter & Manipulate CurrentImage []
Please consider the following (I am using Mathematica 8) :
mask = DensityPlot[-Exp[-(x^2 + y^2)/5], {x, -4, 4}, {y, -3, 4},
Axes -> None, Frame -> None, Method -> {"ShrinkWrap" -> ...
1
vote
2answers
163 views
How to find which dynamic objects taking excessively long time to finish?
M 8.0.1, windows 7.
A debugging question.
Sometimes when I start M and open my notebook (which has dynamics enabled in it before I closed it) I get this message
The problem is, no matter if I ...
17
votes
1answer
551 views
dynamic interactivity problem
I am trying to have two panels, the left showing a graphic and two locators, the right one a zoomed-in version in the area defined by the locators.
I've tried
ClearAll[mndpt];
mndpt = Compile[{{c, ...
4
votes
1answer
278 views
Dynamic List Selection within another Dynamic in Mathematica
Building up on the solution proposed by Belisarius in "Manipulate custom Tabular".
Consider the following Function to create custom Tabular representation :
DataSampleXX[data_, linesNumber_, ...
2
votes
1answer
269 views
Manipulate Custom Tabular representation in Mathematica
Considering the following data example :
data ={
{"a", "b", "c", "d", "e"},
{1, 2, 3, 4, 5},
{11, 12, 13, 14, 15},
{21, 22, 23, 24, 25}
};
And the following ...
1
vote
1answer
153 views
Visualizing a geometric puzzle with mathematica
I am trying to figure out a way to move two points, X and Y, independently of one another along the edges of an equilateral triangle with vertices A, B, and C. There are also some collision rules ...
6
votes
2answers
270 views
Convert a Dynamic[] construct to a numerical list
I have been trying to put together something that allows me to extract points from a ListPlot in order to use them in further computations. My current approach is to select points with a Locator[]. ...