Questions on the Manipulate function of Mathematica, a function that allows the interactive manipulation of certain parameters in a Mathematica expression.
0
votes
0answers
36 views
How can I import sound from within a Manipulate expression?
I want to import sound from a file, record, and import sound.
...
1
vote
1answer
51 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 ...
-1
votes
0answers
63 views
Returning value inside module to outside the module loop
As the question states, I'm running a series of loops within a module. Specifically, I wish to return the value declared by my Do/If loop (I am using Catch/Throw to return the iteration value I need ...
0
votes
1answer
44 views
Using Manipulate Feature for Two ODE's
So I have not been able to find any examples of the Manipulate feature for two ODE's. I would like to plot a graph of x[t] vs. y[t] and manipulate the initial conditions, v and theta. Thank you very ...
-4
votes
0answers
53 views
help with manipulate [closed]
I want to evaluate two graphs, one is ok, involve Sin[x], but the other, very similary, involves Sinh[x] and is not OK.
This is ...
11
votes
3answers
267 views
Simulate a simple spinner
I'm teaching some simple ideas in probability to students in grade 7.
The "spinner" below works, but I'm wondering how I could make it just a bit more realistic by having it actually "spin" around a ...
0
votes
0answers
25 views
Error in extracting a column [duplicate]
I imported excel data to Mathematica using this command.
kuruzD = Import[
"C:\\Users\\TMH\\Documents\\Problem Set 4\\kuruzData.xlsx"][[1]] //TableForm
I want to ...
0
votes
1answer
48 views
DataRange problem in a ListLinePlot within a Manipulate
I'm trying to create a simulation of a set of lists with Manipulate[] and ListLinePlot[]. However, as my simulation starts with ...
3
votes
1answer
52 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 ...
2
votes
2answers
72 views
How to prevent errors in Manipulate with ListPlot when a result is an empty list?
I am trying to plot two lists, where one is the reference list, and the other is only used to select and highlight the first list. Basically, I want to use the selection list ...
0
votes
0answers
50 views
Manipulating output from Solve
I have two systems of equations Linear in $A_i$
System 1
$\sum_{i=1}^{4} A_i F_{a1i}(H_1,H_2,H_3,H_4) = G_{a1}(H_1,H_2,H_3,H_4) \\
\sum_{i=1}^{4} A_i F_{a2i}(H_1,H_2,H_3,H_4) = ...
1
vote
0answers
79 views
Manipulate - Flickering graphics
I am new to mathematica and was experimenting with NDSolve and doing a simple demonstration of orbital motion and Newtons laws. I put together the following code which all seems to work except the ...
1
vote
1answer
45 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
88 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
1answer
102 views
How can you show data in a CDF Animate Graphic?
I want to show (dynamically) the curvature and torsion in a CDF to understand the quantitative measure of any points. Do you know what I have to do to show data in a ...